Created
May 2, 2016 14:44
-
-
Save ajduke/98ce7cfd33e37f7c8baf2352e1138a5e 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
console.time('Operation1') | |
for (var i = 0; i < 1000000000; i++) { | |
} | |
console.timeEnd('Operation1') | |
/// following is outout | |
// $ node app.js | |
// Operation1: 507ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment