패스트캠퍼스

javaScript-가져오기와 내보내기(모듈)

용용it 2023. 8. 28. 03:04
가져오기와 내보내기

기본 내보내기
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)