This question already has answers here:
How I trigger the “System Bell” in nodejs

(2个答案)


3个月前关闭。




我正在使用JS开发CLI应用程序,并且我希望它在调用特定函数时发出噪音。我该怎么办?
function emitNoise(){
//noise emitting code
}

最佳答案

console.log('\u0007');
会触发系统铃声

10-06 09:02