标题:node.js中的console.assert方法使用说明
时间:2022/07/10
分享

方法说明:

该方法和 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)); 

  } 

};
本文仅代表文章作者的个人观点,请读者仅作参考,并自行核实相关内容。如有侵权请与我们联系,我们将及时删除。
推荐资讯
进入资讯频道查看更多新闻