1.debugger : 方便好用
2.console.table():打印复杂的数据量在表中,方便查看
var animals = [ { animal: 'Horse', name: 'Henry', age: 43 }, { animal: 'Dog', name: 'Fred', age: 13 }, { animal: 'Cat', name: 'Frodo', age: 18 } ]; console.table(animals);
3.快速找到你的DOM结构:在浏览器中的console中使用$4 $3 $2 $1一次代表dom对象从父节点到子节点的目录结构
4.利用console.time和console.timeEnd()进行程序运行时间查看
5 利用console.trace()来打印方法中的堆栈信息。
6 debug(方法):来快速定位到你需要查找的方法并打上断点