Latest Posts

postimage

이벤트캡쳐링/이벤트버블링

이벤트캡쳐링버블링  (preventDefault)0.부모요소-자식요소에서 자식요소에 만약 클릭이벤트가있고 그걸 실행할 경우 부모의 클릭이벤트도 실행된다(이벤트버블링)1.가장 자식 요소를 클릭하면 부모요소의 이벤트부터 하나하나 타고 내려갔다가 다시 올라옴2.addEven

2022-11-24 01:51
postimage

THIS에 대해서

THIS1.호출한 녀석을 바라봄let person ={ name:’yoon’, printThis1: funciotn(){ console.log(this) }, printThis2:function(){ setTimeout(function()

2022-11-24 01:46
postimage

NPM 명령어에 관해서

require('모듈1')위의 명령어는 기본적으로 node_module폴더를 기준으로 참조함node_moduleㄴ모듈1ㄴ모듈2node_modules폴더로 직접접근해서 실행가능./node_modules/.bin/nodemon index.js또한 package.json에

2022-11-23 12:04