Sources Hands-On 3
📝 Instructions
To complete this hands-on exercise, please follow these steps:
- 🔧 Open your browser's Developer Tools by pressing F12 or Ctrl+Shift+I
(Windows/Linux) or Cmd+Option+I (Mac).
- 🗂️ Navigate to the Sources tab.
- 📁 Locate the index.js file in the file navigator.
- 👀 Examine the code that is currently running.
- 🎨 Try to use the {} button to see the code Pretty
- ❓ How is this code called?
Minification + Obfuscation
setTimeout(() => {
let x = 0;
const intervalId = setInterval(() => {
console.log(x);
x++;
if (x >= 60) {
clearInterval(intervalId);
}
}, 1000);
}, 2000);