You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
conststart=Date.now();for(leti=0;i<10000000;i++){1+1;// ...}constdiff=Date.now()-start;console.log('Time execution with Date.now: '+diff+' ms');// Time execution with Date.now: 8 msconsole.time('Time execution with console.time');for(leti=0;i<10000000;i++){1+1;// ...}console.timeEnd('Time execution with console.time')// Time execution with console.time: 7.21630859375ms
如你所见,console.time 还返回了更准确的结果。
总结
现在,你可以在 Console API 中使用更多出色的工具。将它们应用于项目开发调试中,你的开发速度将会成倍提高!
The text was updated successfully, but these errors were encountered:
只需要花费 3 分钟的时间,学习更多用于调试的控制台命令吧!
console API
每个
JavaScript
开发人员都使用过console.log()
。console
模块是JavaScript
中最常见的模块之一,其 API 在Node
中表现为:这是在 Node.js文档 页面上对 Console 模块的定义。但是,初学者在学习新技术时,更倾向于直接百度或谷歌搜索出具体的解决方案,而不是去阅读官方文档,这就使得初学者不能完全掌握该新技术的所有正确使用方案,容易在实际开发过程中踩坑。
在谈到 Console API,通常初学者只使用一些基本功能,如👌⚠️
console.log()
、console.warn()
,或 ❌console.error()
等。 但是还有很多其他方法可以满足我们的要求,并能在开发过程中提高调试效率。Console
对象可以从任何全局对象中访问到,因此不需要 console 模块。一、console.assert ✅
该
console.assert
函数用于判断第一个参数是否为=真。false
的话抛出异常并且输出为Assertion failed
以及第一个参数后的额外参数;true
的话代码执行将继续进行,而不会记录任何日志。当我们想要检查值是否存在,并且希望保持控制台干净(避免记录较长的属性列表等),我们可以使用
assert
方法。二、console.count 和 console.countReset 💯
这两种方法用于设置和清除计数器,以记录特定字符串在控制台中调用
console.count
的次数:计算并重置
Hello Bottle
字符串的日志出现次数。三、console.group 和console.groupEnd 🎳
console.group
在控制台中创建一个新的分组,之后你所有输出到控制台的内容都属于该分组,直到console.groupEnd
结束该分组。你可以设置参数作为console.group()
创建分组的描述:四、console.table 📋
此方法用于描述特定化的数组或对象,它会把传入的数据以表格的方式输出:
用户对象列表。
console.table
使嵌套或复杂的数组/对象的检查和记录变得更加容易。五、console.time 和 console.timeEnd ⏱
如果你想在执行时检查代码的性能,你可以在代码开始时使用
Date
创建一个开始时间戳,在代码结束时比较Date.now()
与开始时间戳,像这样:这样实现起来很麻烦,那么有没有一种简单的方法来实现喃?
我们可以使用
console.time
和console.timeEnd
,你只需执行以下操作即可获取某一个操作的执行时长:如你所见,
console.time
还返回了更准确的结果。总结
现在,你可以在 Console API 中使用更多出色的工具。将它们应用于项目开发调试中,你的开发速度将会成倍提高!
The text was updated successfully, but these errors were encountered: