Skip to content

Commit 44121c1

Browse files
author
Ashwin Hegde
committed
Updates slides + console e.g.
1 parent 7341549 commit 44121c1

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

Kit/Session-2/introduction-to-npm.html

Lines changed: 6 additions & 4 deletions
Large diffs are not rendered by default.

Kit/Session-3/Console/console-1.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ console.warn("Warn: Warning Message");
4848
* console.time() will mark a time.
4949
* console.timeEnd() will finish timer, record output.
5050
*/
51-
console.time('Time-Calculations');
51+
console.time('Time-Calculations-Start');
5252
for (var i = 0; i < 1000000000; i++) {
5353
;
5454
}
55-
console.timeEnd('Time-Calculations');
55+
console.timeEnd('Time-Calculations-End');
56+
57+
console.dir(.);

0 commit comments

Comments
 (0)