Skip to content

Instantly share code, notes, and snippets.

@danielborowski
Created October 9, 2017 23:44
Show Gist options
  • Save danielborowski/31c7d8168eea7fc9e11d1109e43179fc to your computer and use it in GitHub Desktop.
Save danielborowski/31c7d8168eea7fc9e11d1109e43179fc to your computer and use it in GitHub Desktop.
// 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);
}
@cbroberg
Copy link

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? :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment