Created
June 9, 2016 07:08
-
-
Save cho45/f867d117dd2c7756290f19781183c413 to your computer and use it in GitHub Desktop.
for of vs for
This file contains hidden or 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
<script> | |
var array = []; | |
for (var i = 0; i < 1000; i++) { | |
array[i] = i; | |
} | |
</script> |
This file contains hidden or 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 sum = 0; | |
for (var i = 0, len = array.length; i < len; i++) { | |
sum += array[i]; | |
} |
This file contains hidden or 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 sum = 0; | |
for (var x of array) { | |
sum += x; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment