Latest Posts

postimage

CORS에러 해결

Access to XMLHttpRequest at '요청url' from origin '요청 도메인(origin)' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present o

2022-11-26 02:08
postimage

숫자와 문자열을 포함한 배열의 정렬

숫자와 문자열을 포함한 배열의 정렬할 경우localeCompare()이라는 함수를 사용한다// 오름차순 const getSingleValueAsc = (arr) => { return arr.sort(function (a, b) { return a.locale

2022-11-26 01:16
postimage

BOM / DOM / 자바스크립트 로드순서

자바스크립트의 모델 (window객체의 자식)BOM // 자바스크립트로 브라우저 제어 (location,history..)DOM // 자바스크립트로 현재페이지의 문서 제어 (document) // 자바스크립트로 제어하기 위한 노드객체를 생성CSSOM  // 자바스크립트

2022-11-25 21:58
postimage

Module / Import / Export (ES6)

본 게시물에서 소개할 내용은 ES6의 import와 export 이다. nodeJS의 require과 exports가 아니다자바스크립트 개발을 하다보면 모듈을 불러오는 문법 두가지 (  require / exports ) 와 ( import / export ) 키워드를

2022-11-24 21:31
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