Today, I watched the 7 lesson of “Advanced Logging with the JavaScript Console“. My debugging skill with JavaScript console was enhanced a lot.
Log levels
1 | console.log() |
Log arguments
We can use the similar formatting in printf of C.
1 | console.log('Your age is %d', 5) |
Grouping and nesting
We group outputs by name.
1 | console.group("GroupName"); |
Assert
We can make some assertions with function assert. But it does not mean the error is handled.
1 | console.assert(info) |
Count
We can count outputs with function count.
1 | console.count("name") |
Timing
1 | console.time("name"); |
Table
1 | console.table(obj) |