码迷,mamicode.com
首页 > 其他好文 > 详细

取余运算在模式选择中的运用

时间:2020-02-15 09:14:32      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:function   hang   nbsp   and   span   rand   code   color   col   

var mode = { 0: ‘sequence‘, 1: ‘loop‘, 2: ‘random‘ }
var m = 1
function changeMode() {
    var newMode = (m  + 1) % 3
    console.log(mode[newMode])
    m++
}

changeMode()  // random
changeMode()  // sequence
changeMode()  // loop
changeMode()  // random

 

取余运算在模式选择中的运用

标签:function   hang   nbsp   and   span   rand   code   color   col   

原文地址:https://www.cnblogs.com/ladybug7/p/12310625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!