ES6 模块导出,下面两种方式有什么区别?
第一种:
export const A_STRING = 'Hello' export const A_FUNC = (str) => str.toUpperCase()
第二种
const A_STRING = 'Hello' const A_FUNC = (str) => str.toUpperCase() export { A_STRING, A_FUNC }
没区别,就是写法的不同。前者方便些罢了。
548k questions
547k answers
4 comments
86.3k users