所以,在P5JS中,我试图创建一个项目,在其中我输入2个数字,它们在单击按钮后被随机加、减、乘或除,谁能展示一下我如何用JavaScript编写随机选取4个基本数学运算的代码,然后我输入的两个数字在单击按钮后被随机加、减、乘或除?
mznpcxlj1#
您可以轻松地放置一个随机说明符:
const randomOpt = Math.floor(Math.random() * 4)
然后,用switch检查randomOpt并执行您想要的操作:
switch
randomOpt
switch(randomOpt) { case '0': return inputValue1 + inputValue2 case '1': ... case '2': ... case '3': ... }
1条答案
按热度按时间mznpcxlj1#
您可以轻松地放置一个随机说明符:
然后,用
switch
检查randomOpt
并执行您想要的操作: