Skip to content

Instantly share code, notes, and snippets.

View willzfrank's full-sized avatar
🐞
Debugging Maybe

Godswill Francis willzfrank

🐞
Debugging Maybe
View GitHub Profile
function f1(a) {
let b = 2;
setTimeout(function () {
console.log(a, b)
}, 1000);
}
function f2() {
for (var i = 0; i < 3; i++) {
setTimeout(function () {