Skip to content

Instantly share code, notes, and snippets.

@Artgerto
Created January 17, 2018 19:33
function f(i) {
k=7;
if(i==3) k=5;
else {
f(3);
alert(k) ;
}
}
f(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment