Created
October 9, 2017 23:44
-
-
Save danielborowski/31c7d8168eea7fc9e11d1109e43179fc to your computer and use it in GitHub Desktop.
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
// interviewer: what will the following code output? | |
const arr = [10, 12, 15, 21]; | |
for (var i = 0; i < arr.length; i++) { | |
setTimeout(function() { | |
console.log('Index: ' + i + ', element: ' + arr[i]); | |
}, 3000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
severity: 'Warning'
message: 'Don't make functions within a loop. (no-loop-func)'
at: '28,13'
source: 'eslint'
Do I or will you tell Amazon and Google? :)