Below is the code I am currently executing in the console.
// Utilizing arrow functions without parameters for enhanced readability
setTimeout( () => {
console.log('Executed first');
setTimeout( () => {
// More nested code
console.log('Executed second');
}, 1);
}, 1);
Upon execution, the log displays the following:
32
Executed first
Executed second
The significance of this numerical value "32" eludes me as it oddly increases by increments of 2 every time I execute the same block of code.