📅  最后修改于: 2022-03-11 15:01:54.910000             🧑  作者: Mango
//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];