当前位置:网站首页>JS basics--judgment
JS basics--judgment
2022-08-03 15:32:00 【AsiaFT.】
JS基础--判断+ 循环
JS判断
if/else if/ else
三元运算符
简单的if else 书写,如果复杂的话,Don't write it as a ternary operator.If the statement is not executed after the judgment,则需要写null 或 undefined来占位
例:将如下if else The judgment turns into a ternary operator
let a = 10;
if (a > 0) {
if (a < 10) {
a++;
} else {
a--;
}
} else {
if (a > -10) {
a += 2;
}
}
由于最后一个if没有else 语句,所以需要加null 或者undefined进行赋值.转换后的结果为:
a > 0 ? (a < 10 ? a++ : a--) : (a > -10 ? a += 2 : null);
如果不加null或undefined,则报错:
Uncaught SyntaxError: Unexpected token ')'
switch case
- 每种caseBest to add it laterbrea.不加break,It does not matter whether the latter condition holds or not,都要执行,直到遇到break为止.
None of the conditions hold,则写default; - ** When a variable has several different values,The executed statement is the same as when,可以不加break;**
- 每种caseThe equal sign in is绝对相等(‘=’包括数值类型),和if else里面不同,if else里面是. For business rigor,使用===
例: 幂的表示: Math.pow(x,次方数)
let a = 10;
switch (a) {
case 1:
a += 1;
break;
case 5:
a += 5;
break;
default:
a = Math.pow(a, 2);
}
console.log(a);
//输出100
例: 如果将case1里的break去除,则为:
let a = 1;
switch (a) {
case 1:
a += 1;
case 5:
a += 5;
break;
default:
a = Math.pow(a, 2);
}
console.log(a);
输出7
case 1 执行,case 5 虽然不符合a=1, 但是由于case1 没有break,will also be executed.
当然,break Not adding is also useful.比方说,不同的取值,When corresponding to the same execution statement,就可以不加break;
例:
let a = 1;
switch (a) {
case 1:
case 5:
a++;
break;
default:
a = Math.pow(a, 2);
}
console.log(a);
// 2
a为1或5 时,做自增操作.因为case 1 里面没有内容,且没有break,所以继续执行5里面的内容,遇到break 跳出判断.
边栏推荐
猜你喜欢
随机推荐
生物统计师与临床医生协同研究使用的低代码洞察平台丨数据科学 x 临床医学
程序员面试必备PHP基础面试题 – 第十八天
跨桌面端之组件化实践
教你如何获取微信公众号历史文章链接
【周报】2022年7月24日
语音识别新一轮竞争打响,自然对话会是下一个制高点吗?
身为程序员的我们如何卷死别人?破局重生。
在北极都可以穿短袖了,温度飙升至32.5℃
使用虚幻引擎自动化工具实现自动化部署
How to use binary search and find whether the rotation in the array contains a (target) value?Rotate the sorted array leetcode 81. Search
地球自转加快
devops-2:Jenkins的使用及Pipeline语法讲解
又有大厂员工连续加班倒下/ 百度搜狗取消快照/ 马斯克生父不为他骄傲...今日更多新鲜事在此...
Deep Learning - Install CUDA and CUDNN to implement GPU operation of tensorflow
取消转义字符(r)
How much does Ark Survival Evolved cost?
问题1:get和post的区别
基于matlab的遥测信道的基本特性仿真分析
php中接口、抽象类以及接口和抽象类区别详解
问题4:什么是缺陷?你们公司缺陷的优先级是怎样划分的?