js 循环输出10次1
时间: 2024-05-15 18:20:11 浏览: 160
js for循环输出
4星 · 用户满意度95%
Sure, here's some code that will loop and output the number 1 ten times using JavaScript:
```
for (let i = 0; i < 10; i++) {
console.log(1);
}
```
Hope that helps!
阅读全文
js for循环输出