यो JavaScript को दुई मोड्यूल प्रणाली हो जसले कोडलाई फाइलहरूमा विभाजन गर्छ।
ES Modules (ESM) — आधुनिक मानक
js
// import / export, used in browsers and modern Node
import { sum } from "./math.js";
import defaultThing from "./thing.js";
export const x = 1;
export default function () {};
