例如: var seatnum = [1,2,3,4,5]; 我想通过命令提示符选择一个seatnum 选择您的Seatnum; 5 然后将seatnum 5更改为0,因为选择了该seatnum 然后输出seatnum [1,2,3,4,0];
答案 0 :(得分:0)
您可以像这样使用prompt
来接收用户的输入。
let arr = [...'123456'];
const select = prompt('Select seat number')
const output = arr.map(e=> (e === select ? '0' : e) )
console.log(output)
我建议您在此处阅读有关prompt的更多信息