Skip to content

Instantly share code, notes, and snippets.

@Softwave
Created October 7, 2014 20:44
Show Gist options
  • Save Softwave/a50a2a2a1030be2373ea to your computer and use it in GitHub Desktop.
Save Softwave/a50a2a2a1030be2373ea to your computer and use it in GitHub Desktop.
var old_time = new Date();
for (var i = 0; i <= 1000000000; i++) {
//console.log(i);
}
var new_time = new Date();
var time_passed = new_time - old_time;
//console.log(time_passed);
alert(time_passed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment