當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。