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


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


Node.js控制台类中的console.warn()函数用于在控制台上显示警告消息。它使用换行符打印到stderr。

注意:该函数是console.error()函数的别名。

用法:


console.warn( [data][, ...args] )

参数:该函数可以包含多个参数。第一个参数用于主消息,其他参数用于替换值。

返回值:该函数返回警告消息。

下面的程序演示了控制台的工作。warn()函数:

程序1:

function displayWarning(x) { 
    console.warn(`GeeksforGeeks is a ${x} portal`); 
} 
   
const x = 'Computer Science'; 
  
displayWarning(x);

输出:

GeeksforGeeks is a Computer Science portal

程序2:

function compareNumber(x, y) { 
      
    // Check condition 
    if (x > y) { 
        console.warn(`${x} is greater then ${y}`); 
    } 
    else { 
        console.warn(`${x} is less then or equal to ${y}`); 
    } 
} 
  
// Store number to variable 
x = 100; 
y = 50; 
  
compareNumber(x, y);

输出:

100 is greater then 50


相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 Node.js | console.warn() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。