(function() { console.log(1); setTimeout(function(){console.log(2)}, 1000); setTimeout(function(){console.log(3)}, 0); console.log(4); })();
Utilisateur anonyme
just with the numbers, in less the 3 seconds... pretty easy if you know javascript well enough