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


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


console.clear()方法用于清除stdout,如果stdout是TTY(Teletype),即终端将尝试清除TTY。如果stdout不是TTY,则此方法不执行任何操作。

console.clear()在不同的操作系统和终端类型上将以不同的方式工作。对于Linux操作系统,console.clear()的操作类似于终端中的clear shell命令。在Windows上,console.clear()将清除Node.js二进制文件的当前终端视口。

用法:


console.clear()

参数:此方法不接受任何参数。

以下示例程序旨在说明Node.js中的console.clear()方法:

在此示例中,首先我们在终端中编写node.js命令并启动node.js,然后编写基本命令

在console.clear()之后,将清除终端,就像在终端中执行clear命令一样

要退出Node.js终端,请按Ctrl + C two times或使用.exit命令。

例:

// Node.js program to demonstrate the   
// Buffer.clear() Method 
  
// Both two lines will not display 
// the result on screen 
console.log("GeeksforGeeks"); 
console.log("A computer science portal"); 
  
// Clear the previous screen 
console.clear(); 
  
// Display the content 
console.log("Clear the console screen");

输出:

参考: https://nodejs.org/api/console.html#console_console_clear



相关用法


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