Node.js控製台類中的console.error()函數用於在控製台上顯示錯誤消息。它使用換行符打印到stderr。
用法:
console.error([data][, ...args])
參數:該函數可以包含多個參數。第一個參數用於主消息,其他參數用於替換值。
返回值:該函數返回錯誤消息。
下麵的程序演示console.error()函數的工作:
程序1:
// Store number to variable
num = 20
// Check condition
if (num < 100) {
console.log("Enter number greater then 100");
}
else {
console.error("correct choice");
}
輸出:
Enter number greater then 100
程序2:
// Store number to variable
x = 20;
y = 50;
// Check condition
if (x > y) {
console.error('%d is greater then %d', x, y);
}
else {
console.error('%d is less then or equal to %d', x, y);
}
輸出:
20 is less then or equal to 50
相關用法
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 Node.js | console.error() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。