diff --git a/Sprint-3/todo-list/00-what_is_ES_modules.md b/Sprint-3/todo-list/00-what_is_ES_modules.md
new file mode 100644
index 000000000..c10214863
--- /dev/null
+++ b/Sprint-3/todo-list/00-what_is_ES_modules.md
@@ -0,0 +1,16 @@
+# What is JavaScript Modules?
+JavaScript modules let us organize code into separate files, making the code easier to manage and reuse. We can export parts of one file (like functions or variables) and import them into another to keep our code clean and modular.
+
+## Different Module Systems
+
+JavaScript has two main ways to handle modules:
+
+- **CommonJS** is the older format used mostly in Node.js. It uses `require` and `module.exports`.
+
+- **ES Modules** (ESM) are the modern, standard way for browsers and Node.js. They use `import` and `export`.
+
+They are **not** fully compatible.
+
+## Where can I learn ESM?
+- [Modules, introduction](https://javascript.info/modules-intro)
+- [JavaScript modules -- JavaScript | MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules)
\ No newline at end of file
diff --git a/Sprint-3/todo-list/01-using_esm_with_nodejs_and_jest.md b/Sprint-3/todo-list/01-using_esm_with_nodejs_and_jest.md
new file mode 100644
index 000000000..3f1090ab8
--- /dev/null
+++ b/Sprint-3/todo-list/01-using_esm_with_nodejs_and_jest.md
@@ -0,0 +1,47 @@
+# Using ESM with Node.js, Jest, and `jsdom`
+
+## Node.js
+
+Node.js supports both CommonJS and ESM, with CommonJS being the default module system.
+
+To use ESM, we can add `"type": "module"` to `package.json`, or we can name the JS script files with `.mjs` file extension.
+
+**Important**:
+- Avoid mixing CommonJS and ESM in the same project unless you know what you're doing.
+
+
+## Jest
+
+[Jest’s support for ESM](https://jestjs.io/docs/ecmascript-modules) is still experimental, and may require additional configuration to work correctly.
+
+One way to execute Jest test script that uses ESM is to
+
+1. **Update the custom `test` script in `package.json`**:
+```javascript
+"scripts": {
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest"
+}
+```
+
+**Note**: On Windows, use **`set`** instead
+```javascript
+"scripts": {
+ "test": "set NODE_OPTIONS=--experimental-vm-modules && jest"
+}
+```
+
+
+2. **Run a specific Jest test script using**:
+
+```
+npm test --
+
+ + +
+ + + + + +