基本上,我想为5 times
使用repeating - npm重复console.log
这听起来很基础,但是我无法弄清楚如何使用console.log('test');
将nodejs
重复5次,对于需要多次重复特殊代码的节点应用程序,我需要这样做nodejs
。希望这里的人可能知道解决方案。
app.js
const repeating = require("repeating");
repeating(5, console.log('test'));
答案 0 :(得分:1)
您使用<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
打印重复的字符串:
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
选中DOCS。
repeating
函数仅需要一个字符串。
要多次调用一个函数,可以使用for循环。
const repeating = require('repeating');
console.log(repeating(100, 'unicorn '));
上面的代码就像下面一行循环一样
repeating(count, [string])
您可以进行递归。
for (var i = 0; i < 5; i++) {
console.log("Hi");
}
此comment中还有更多示例。