switch 语句

来源:互联网 发布:unity3d 场景资源 编辑:程序博客网 时间:2024/06/08 17:38
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>DEMO - Lik</title></head><body><script>var total = 10;switch(total){case 0:console.log('这是个0');break;case 10:console.log('这是个10');break;case 20:console.log('这是个20');break;default:console.log('它什么都不是');}</script></body></html>

  最后控制台会输出:

 

原创粉丝点击