gpt4 book ai didi

javascript - 如何在 ES6 箭头函数中编写这段代码

转载 作者:行者123 更新时间:2023-12-05 00:54:07 24 4
gpt4 key购买 nike

我正在尝试创建一个随机颜色生成器,有什么方法可以缩短这段代码并转换为 es6 箭头函数吗?谢谢

let html = "";
let rgbColor;

function randomColors(red, green, blue) {
for (let i = 1; i <= 10; i++) {
red = Math.floor(Math.random() * 256);
green = Math.floor(Math.random() * 256);
blue = Math.floor(Math.random() * 256);
rgbColor = `rgb(${red},${green},${blue})`;
html += `<div style="background-color:${rgbColor}"></div>`;
}

document.write(html);
}

randomColors()

最佳答案

您可以使用 Array#fromArray#join生成每种颜色和颜色列表,并将所有内容组合成一个字符串:

const randomColors = (count) => 
Array.from({ length: count }, (_, k) => // create an array of divs with length of count
`<div style="background-color: rgb(${
Array.from({ length: 3 }, () => Math.floor(Math.random() * 256)).join()
})">${k}</div>` // inside each div create an array of 3 colors, and join them
).join(''); // join the array of divs to one string

document.write(randomColors(9));

关于javascript - 如何在 ES6 箭头函数中编写这段代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48045773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com