We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(1) Why does the following code print null and not 6 or 10?
var i = 6; function f() { console.log(i); var i = 10; } f();
There was an error while loading. Please reload this page.