Created
October 7, 2014 20:44
-
-
Save Softwave/a50a2a2a1030be2373ea to your computer and use it in GitHub Desktop.
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 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