메모리절약2 MySQL에 넣었다가 꺼냈다가. 뭘? 1. 오토셋 APM 인스톨러 ( apache + php7.2 + mariadb ) 설치 | https://itadventure.tistory.com/93 2. 코드이그나이터 4 ( codeigniter 4 ) 설치 | https://itadventure.tistory.com/95 3. 비주얼 스튜디오 코드 에디터 설치 & 한글 설정 | https://itadventure.tistory.com/96 4. 폴더열기 / 웹페이지 편집(1) | https://itadventure.tistory.com/97 5. 웹페이지 편집(2) | https://itadventure.tistory.com/101 6. 코드이그나이터4의 URL 규칙 | https://itadventure.tistory.com/105 7. php.. 2020. 2. 9. 자바스크립트 일반메소드 vs 프로토타입 자바스크립트에는 클래스라는 개념이 없기 때문에, 함수를 마치 클래스처럼 사용합니다. 보통 다음과 같이 사용할수가 있는데요. 아주 간단한 형태의 클래스 선언입니다. function craySample2Class() { this.message="달린다2"; this.run = function(){ alert(this.message); } } 이 클래스는 클래스의 프로퍼티(property)로서, message 요소가 하나 정의되고, 아울러 run 이라는 메소드(method)가 정의됩니다. 이 클래스를 통해 객체 선언하는 문장은 아래와 같습니다. var craySample2 = new craySample2Class(); 그러면, craySample2 라는 객체가 생성되고, craySample2.message.. 2019. 8. 24. 이전 1 다음