import

    [Javascript] ES6 export, import

    [Javascript] ES6 export, import

    안녕하세요. 이번 포스팅은 export, import에 대해 알아보겠습니다. ES6에서는 export, import를 사용하여 자바스크립트가 모듈화를 할 수 있는 기능을 제공합니다. export는 두 가지 방법이 있다. export default, (named)export 우선 export 예제를 보겠습니다. // module1.js export default function test() { console.log('module1 test'); } export function test1() { console.log('module1 test1'); } export function test2() { console.log('module1 test2'); } 이것을 아래와 같이 사용할 수도 있습니다. // mod..