Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created June 27, 2019 12:02
Show Gist options
  • Save prof3ssorSt3v3/617ec8476f7b5c1527fb798bbbe893aa to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/617ec8476f7b5c1527fb798bbbe893aa to your computer and use it in GitHub Desktop.
function f1(a) {
let b = 2;
setTimeout(function () {
console.log(a, b)
}, 1000);
}
function f2() {
for (var i = 0; i < 3; i++) {
setTimeout(function () {
console.log(i)
}, 1000 * i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment