Links #84
Aug 24, 2017 · 1 min read
Beyond Console Debugging:
Summary:
In addition to console.trace() and console.table.
console.time() and console.timeEnd() // measures execution time
console.profile() and console.profileEnd() // measure CPU consumption
console.dir(<domElement>) // JS representation of domElement printing out the properties
debug(functionName) // if ctrl+shift+f doesn’t find it, try debug()
monitor(functionName) // monitor the arguments of a function
Web streams — FTW!:
