-4
以下のコードでは、文字列 'rgb'は何を意味していますか?なぜそれが必要なのか分かりません。JavaScriptでのランダムな色の生成
function randomColors() {
var red = Math.floor(Math.random() * 256);
var green = Math.floor(Math.random() * 256);
var blue = Math.floor(Math.random() * 256);
var colors = 'rgb(' + red + ',' + green + ',' + blue + ')';
return colors;
}
なぜあなたは赤+緑+青を連結できませんか? –
質問する前にウェブ検索をお試しください。基本的な研究があなたの一部に期待されています.... * "rgb color" *の簡単な検索は多くの結果をもたらします – charlietfl