Node.js console.warn()函数
Node.js 的控制台类中的console.warn()函数用于在控制台上显示警告消息。它使用换行符打印到标准错误。
注意:此函数是 console.error()函数的别名。
句法:
console.warn( [data][, ...args] )
参数:该函数可以包含多个参数。第一个参数用于主消息,其他参数用于替换值。
返回值:函数返回警告信息。
下面的程序演示了 console.warn()函数的工作:
方案一:
function displayWarning(x) {
console.warn(`GeeksforGeeks is a ${x} portal`);
}
const x = 'Computer Science';
displayWarning(x);
输出:
GeeksforGeeks is a Computer Science portal
方案二:
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