분류 전체보기 (251) 썸네일형 리스트형 [JavaScript] Object Model 왜 Object Model을 알아야 하는가? 아래의 HTML 코드를 보자 ... [Vanilla JavaScript]폴더구조 및 검색폼 index.html View.jsconst tag = '[View]' export default { init(el) { if (!el) throw el console.log(el) -----> this.el = el return this }, on(event, handler) { this.el.addEventListener(event, handler) return this }, emit(event, data) { const evt = new CustomEvent(event, { detail: data }) this.el.dispatchEvent(evt) return this }, hide() { this.el.style.display = 'none' return this }, show() { this.e.. [Vanilla JavaScript] 개발환경 구축 // node js와 npm Chrome V8 JavaScript 엔진 : V8 엔진은 웹 브라우저를 만드는 데 기반을 제공하는 오픈 소스 응용 프로그램 프레임워크이다. 이벤트 기반 void main() { a(); b(); c(); } void main() { while(1) { int ch = getch(); if(ch == 'a') a(); if(ch == 'b') b(); if(ch == 'c') c(); if(ch == 'x') break; } } 아래의 코드가 이벤트 기반의 프로그래밍 위의 코드는 순서대로 실행되고 종료되지만 아래의 코드는 입력 받는 값에 따라 계속 루프를 돌며 실행함. 논 블로킹 I/O모델 http://www.nextree.co.kr/p7292/ 일단은 여기 참조 JavaScript 런타임 컴파일 런타임.. 이전 1 ··· 29 30 31 32 다음