Skip to content

export const vs. export default in ES6 둘의 차이는 무엇인가요? #13

Answered by yhshin0
hochan222 asked this question in Q&A
Discussion options

You must be logged in to vote

export const는 read-only로만 내보낸다는 의미를 갖고 있습니다.

그리고 export default는 해당 모듈에서 하나의 개체만 내보낸다는 의미를 갖고 있습니다.

따라서, export const를 import 하는 경우에는 {}를 사용해야 하고, export deafult를 import 하는 경우에는 {}를 사용하지 않아도 됩니다.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by hochan222
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants