📜  js 随机减号 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:29.881000             🧑  作者: Mango

代码示例1
var plusOrMinus = Math.random() < 0.5 ? -1 : 1;