We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7341549 commit 44121c1Copy full SHA for 44121c1
Kit/Session-2/introduction-to-npm.html
Kit/Session-3/Console/console-1.js
@@ -48,8 +48,10 @@ console.warn("Warn: Warning Message");
48
* console.time() will mark a time.
49
* console.timeEnd() will finish timer, record output.
50
*/
51
-console.time('Time-Calculations');
+console.time('Time-Calculations-Start');
52
for (var i = 0; i < 1000000000; i++) {
53
;
54
}
55
-console.timeEnd('Time-Calculations');
+console.timeEnd('Time-Calculations-End');
56
+
57
+console.dir(.);
0 commit comments