我有一個字符串數組,只需要其中4個(隨機)放入另一個數組。選擇隨機數組元素並放入另一個
var a = ["Orange", "Red", "Yellow", "Blue", "Black", "White", "Brown", "Green"];
var b = [];
function selectColours(){
var toRandomise = a[Math.floor(Math.random() * 4)];
b.push(toRandomise);
}
console.log(b);
我的問題是,控制檯不顯示任何內容。
你叫'selectColours()'? –
這樣你就無法比「藍色」更進一步。用'a [Math.floor(Math.random()* a.length)]替換'a [Math.floor(Math.random()* 4)]'' – Redu