Skip to content

Instantly share code, notes, and snippets.

@vistajess
Last active January 25, 2016 06:06
Show Gist options
  • Save vistajess/d4785ed4a454650f4b0f to your computer and use it in GitHub Desktop.
Save vistajess/d4785ed4a454650f4b0f to your computer and use it in GitHub Desktop.
var arr = ["aaa","bbb"];
console.time('native');
for (var i=0; i < arr.length; i++) {
console.log(arr[i]);
};
console.timeEnd('native');
console.time('jquery');
$.each(arr, function(i,v){
console.log(v)
})
console.timeEnd('jquery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment