This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x; | |
for (var i; i<10; i++) { | |
x = $("$a-thing"); | |
// ...more work here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var i; i<10; i++) { | |
var x = $("$a-thing"); | |
// ...more work here | |
} |
But when this came up when talking with a friend later in the day, he mentioned that he didn't think javascript even maintained scope inside "for" loops. Coming from C++, I thought loops in both javascript and python would hold scope. The following were our test functions, entered on the Chrome Developer Tools command line for javascript and the REPL for Python.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in range(10): | |
x = 4 | |
print x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(var i=1; i<10; i++){var x = 3;}; | |
x |
In the particular case I was discussing, the choice becomes a big more grey. There are strong opinions on both sides of the fence. At this point I agree with the accepted answer on the linked StackOverflow discussion: "For the case where a variable is used temporarily in a section of code, it's better to declare var in that section, so the section stands alone and can be copy-pasted." I think the use "var" can be as helpful for people as compilers, and it makes the intent of a block of code more clear. Using "var" on a variable in a code block says to me that this variable is intended for use in this code block, and may not have any meaning outside of it.