가져오기와 내보내기
기본 내보내기
export default 123
이름 내보내기
export const str = 'ABC'
export const arr = []
export function hello() {}
가져오기
import zxc from './module.js'
console.log(zxc) // 123
import number, { str, arr, hello } from './module.js'
console.log(str)
console.log(arr)
console.log(hello)
import number, { str as xyz, arr, hello } from './module.js'
console.log(xyz) // ABC
모든 데이터를 할당
import * as abc from './module.js'
console.log(abc)
'패스트캠퍼스' 카테고리의 다른 글
패스트캠퍼스 프론트엔드 개발 5기 부트캠프_미니 프로젝트 후기 (0) | 2023.08.29 |
---|---|
javaScript-JSON (0) | 2023.08.27 |
javaScript-재귀 (0) | 2023.06.17 |
javaScript-콜백함수 (0) | 2023.06.16 |
javaScript-함수(즉시실행함수IIFE) (0) | 2023.05.15 |