您的位置:首页 > Web前端 > Node.js

node.js中的console.assert方法使用说明

2014-12-10 00:00 851 查看
方法说明:

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

  } 

};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: