node.js中的console.assert方法使用说明
node.js中的console.assert方法使用说明
发布时间:2016-12-30 来源:查字典编辑
摘要:方法说明:该方法和assert.ok()相同。如果表达式(expression)求值结果是false将会抛出一个AssertionError...

方法说明:

该方法和 assert.ok() 相同。如果 表达式(expression)求值结果是false将会抛出一个 AssertionError 伴随着提示信息(message)

语法:

复制代码 代码如下:

console.assert(expression, [message])

接收参数:

expression 表达式

message 错误提示信息

例子:

复制代码 代码如下:

var a = 0;

console.assert(a == 1, 'error!');

源码:

复制代码 代码如下:

Console.prototype.assert = function(expression) {

if (!expression) {

var arr = Array.prototype.slice.call(arguments, 1);

require('assert').ok(false, util.format.apply(this, arr));

}

};

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类