ECMAScript Module (ES Module)
The ES (ECMAScript) Module system, is a standardized module system for JavaScript. It was introduced in ECMAScript 6 (ES6) and provides a way to organize and reuse code in a structured manner.
The key idea behind ES modules is to break JavaScript code into smaller, reusable pieces called modules, which can then be imported and exported between different parts of an application.