JavaScript Modules
Modules memisahkan kode ke file-file terpisah.
Export
export const x = ...— named exportexport default ...— default export (satu per file)
Import
import { x } from './file.js'— namedimport x from './file.js'— defaultimport * as mod from './file.js'— semua
Gunakan <script type="module"> di HTML.