비동기

1. Modulesimport와 export 패턴exportexport default 123export const str = 'abc'export const arr = []export function hello () {} 여러개의 데이터를 내보낼 때 export 키워드를 사용한다.하나의 데이터를 내보낼 때 export default 키워드를 사용한다. importimport { str as string, arr, hello as helloFunction } from './module.js'console.log(string, arr, helloFunction)import * as object from './module.js'console.log(object.str, object.arr, object.hel..
kangkibong
'비동기' 태그의 글 목록