首頁 >web前端 >js教程 >node.js中的console.assert方法使用說明_node.js

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

WBOY
WBOY原創
2016-05-16 16:27:551436瀏覽

方法說明:

該方法和 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));
  }
};
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn