用nodejs写一个函数,该函数可以将传入的字符串变量复制10次后返回结果
时间: 2023-05-26 18:01:32 浏览: 107
nodejs 函数
以下是使用Node.js编写的函数,可以将传入的字符串变量复制10次后返回结果:
```javascript
function copyStr(str) {
let result = '';
for(let i = 0; i < 10; i++) {
result += str;
}
return result;
}
// 示例
console.log(copyStr('hello'));
// 输出: hellohellohellohellohellohellohellohellohellohello
```
解析:
该函数使用for循环将传入的字符串变量复制10次,然后将结果存储在一个结果变量中,并在循环结束后返回结果。在函数示例中,将字符串“hello”作为参数传递给函数,并打印输出结果。
阅读全文