웹(29)
-
배열과 객체의 사용- 07.html
배열과 객체의 사용 객체를 최소로 만들고, 배열의 객체에 접근해서 동적으로 배열 요소 추가 학습내용 자바에는 없는 형태 패턴이 바뀔 경우 소스 코드 //빈 객체 생성 var students = []; //객체를 배열에 저장 students.push( { name:'홍길동', korean:90, math:70, english:89, science:80 } ); students.push( { name:'이순신', korean:95, math:79, english:78, science:87 } ); students.push( { name:'유관순', korean:100, math:96, english:67, science:67 } ); students.push( { name:'일지매', korean:89, m..
-
Web Server (웹 서버) 점유율, 2014 년 4월 기준
Web server developers: Market share of all sites Web server developers: Market share of active sites Web server developers: Market share of the top million busiest sites http://news.netcraft.com/archives/2014/04/02/april-2014-web-server-survey.html
-
속성 제거- 06.html
속성 제거 객체의 프로퍼티를 delete연산자를 이용해 즉시 제거할 수 있습니다. delete연산자는 객체의 프로퍼티를 삭제할 뿐, 객체 자체를 삭제하지는 못합니다. delete(student.취미); 소스 코드 //빈 객체 생성 var student = {}; //객체에 속성 추가 student.name = '홍길동'; student.hobby = '피아노'; student.specialty = '자바'; student.willjob = '프로그래머'; document.write(' ==================================== '); //객체의 메소드 추가 student.toString = function(){ //속성의 명세 호출하기 var msg = ''; for(var key..
-
JSON, 데이터 교환 방식
JSON 특정 언어에 의존적이지 않는 독립적인 데이터 교환 방식입니다. 텍스트로 이뤄진 데이터 표현 방식으로 사람이 읽고 쓰기 용이하고 기계에서 분석 활용하기에도 용이하여 XML과 함께 많이 사용되고 있습니다. 형식은 자바스크립트의 구문 형식을 따르지만, 프로그래밍 언어나 플랫폼에 독립적입니다. 오브젝트나 배열 형태로 데이터를 구조하여 전달할 수 있습니다. 자바 스크립트 문법을 사용하였기 때문에 자바스크립트를 자주 사용하는 웹 개발환경에 유리합니다. JSON 형식 배열 [ 값(value), 값 ] 객체 { 이름(key):값, 이름:값 } 일반적인 형태 [ { key:value }, { key:value } ] JSON 표현 자료형 기본 자료형수, 문자열, 참/거짓, null집합 자료형배열, 객체 문자열 ..
-
[WebStorm] JetBrains Add-on for Firefox 설치
WebStorm JetBrains Add-on for Firefox 설치 파이어폭스 브라우저에서 디버깅을 수행할 경우 Run > Edit Configurations...실행해 Browser를 FireFox으로 설정합니다. Apply > OK