Skip to content

Instantly share code, notes, and snippets.

@rehasantiago
Created August 6, 2022 15:16
Show Gist options
  • Save rehasantiago/da69a81d275118980577842262c5c858 to your computer and use it in GitHub Desktop.
Save rehasantiago/da69a81d275118980577842262c5c858 to your computer and use it in GitHub Desktop.
I bet you can't solve these 1
function foo() {
let a = b = 0;
a++;
return a;
}
foo();
console.log(typeof a);
console.log(typeof b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment