9. dynamic import ES Module - Error
const a = false;
if (a) {
// 그런데 이런건 안된다.
// ES Module에선 import는 반드시 최 상단에 위치해야된다.
import './3_4_5_ES_Module_example_1/func.mjs'; // SyntaxError: Unexpected string
}
console.log('성공');
const a = false;
if (a) {
// 그런데 이런건 안된다.
// ES Module에선 import는 반드시 최 상단에 위치해야된다.
import './3_4_5_ES_Module_example_1/func.mjs'; // SyntaxError: Unexpected string
}
console.log('성공');