当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js console.error()用法及代码示例


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。