作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
很难理解数组中的循环。尝试创建感谢卡创建者,这些是我尝试遵循的步骤:
const names = []
function writeCards(names, event) {
for (let i = 0; i < names.length; i++) {
console.log(`Thank you, ${names[i]} for the wonderful ${event} gift!`);
return names;
}
不确定我是否在正确的轨道上。感谢您的帮助!
最佳答案
我知道您的问题集中在 for
循环上,但以防万一,您可能有兴趣使用 map
以更简洁的方式实现所需的结果:
const names = ["Joe", "Nina"]
function writeCards(names, event) {
return names.map(name=> `Thank you, ${name} for the wonderful ${event} gift!`)
}
console.log(writeCards(names, "birthday"))
关于javascript - For 循环后返回数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70547982/
我是一名优秀的程序员,十分优秀!