在以下简短脚本中(在我的浏览器中运行):

var ages = [23, 22, 4, 101, 14, 78, 90, 2, 1, 89, 19];

const ages3 = ages.map(function(age) {
    return Math.sqrt(age) + "<br/>";
});

document.write(ages3);


我想以最简洁的方式打印一列平方根值(最好使用上面的map方法)。我试图链接一个连接,例如return age.join(' ').Math.sqrt(age) + "<br/>"; but that was unsuccessful (no output was produced).
谢谢。

最佳答案

我的解决方案使用joinmap

var ages = [23, 22, 4, 101, 14, 78, 90, 2, 1, 89, 19];

document.write(ages.map(a => Math.sqrt(a)).join("<br>"));

我认为此解决方案非常简洁,可以满足您的需求。

10-01 10:25