ES Modules: import and export
The native, standardized module system for splitting JavaScript code across files, replacing older ad-hoc patterns like CommonJS and IIFEs for the browser.
ES Modules (ESM), standardized in ES6, give JavaScript a native way to split code across multiple files with explicit import/export relationships, replacing the ad-hoc patterns that came before it. Since virtually all modern JavaScript, in both the browser and Node, is organized into modules, fluent knowledge of import/export syntax and semantics is assumed baseline knowledge in interviews.
ES Modules are like a well-organized library's card catalog: each book is only ever shelved and cataloged once no matter how many patrons check its card, and if the book's contents update in place, every patron's reference reflects the update.