Method description:
This method is the same as assert.ok(). If the expression evaluates to false, an AssertionError will be thrown along with the message
Grammar:
console.assert(expression, [message])
Receive parameters:
expression
message Error message
Example:
var a = 0;
console.assert(a == 1, 'error!');
Source code:
Console.prototype.assert = function(expression) {
if (!expression) {
var arr = Array.prototype.slice.call(arguments, 1);
require('assert').ok(false, util.format.apply(this, arr));
}
};
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn