<!DOCTYPE html> <html> <body> <button id="myBtn">Try it</button> <script> button=document.getElementById("myBtn") button.addEventListener("click", function(){ Promise.resolve().then(()=>console.log('Microtask 1')); console.log('1'); }); button.addEventListener("click", function(){ Promise.resolve().then(()=>console.log('Microtask 2')); console.log('2'); }); //button.click(); //not the same as click from the user... ..JsStacks and MicroTasks </script> </body> </html>
Monday, February 17, 2020
JsStacks and MicroTasks, Can you guess the order of the prints?
Subscribe to:
Post Comments (Atom)
What's the quickest way to find duplicated files?
find . ! -empty -type f -exec md5sum {} + | sort | uniq -w32 -dD fdupes -r / linux_czkawka_gui.AppImage
-
sh -c 'xfce4-screenshooter --fullscreen --save "$HOME/Pictures/Screenshots/Screenshot_$(date +%Y-%m-%d_%H:%M:%S).png"' s...
-
sudo -u www-data /usr/local/bin/composer install --no-ansi --no-dev --no-interaction --no-progress --no-scripts --optimize-autoloader
No comments:
Post a Comment