javaScript-条件语句优化】的更多相关文章

JavaScript条件语句 学习目标 1.掌握length属性的应用 2.掌握if语句的嵌套 length 语法:string.length 功能:获取string字符串的长度 返回值:number <script>       var password=prompt("请设置您的密码");       // 判断密码的长度,如果不是6位,否则       if(password.length!=6){          alert("请输入6位的数字密码&qu…
JavaScript条件语句--分支语句 学习目标 1.掌握条件语句if 2.掌握prompt()的应用 3.掌握alert的应用 If语句 语法一: If(condition){ statement1 } prompt() 语法:prompt() 功能:弹出输入框 返回值:1.点击确定,返回输入内容 2.点击取消,返回null alert() 语法:alert() 功能:弹出警告对话框 If语句 语法二: If(condition){ Statement1; }else{ Statement2…
译文 当我们写JavaScript代码时,经常会用到到条件判断处理,这里有5个技巧能使你写出更好.更简洁的条件语句. 1.使用Array.includes处理多种条件 让我们来看一下的例子: // conditionfunction test(fruit) { if (fruit == 'apple' || fruit == 'strawberry') { console.log('red'); }} 一眼看去,以上的例子貌似没有什么问题.但是,如果我们加入更多的红色水果,比如车厘子(cherr…
if语句     有些代码块只能在一定条件下运行,通过if.if else.else代码块,可以让你的代码按条件执行. // 控制流 var foo = true; var bar = false; if ( bar ) { // 这里的代码将无法运行. console.log( "hello!" ); } if ( bar ) { // 这里的代码将无法运行. } else { if ( foo ) { // 这里的代码是可以运行的. } else { // 当foo和bar都为fa…
//条件语句 if (false) { console.log("is true") } else { console.log("is false") } //条件语句2 switch(name){ case "123name": console.log("1") case 2: console.log("2") break; case 3: console.log("3") defau…
if语句 在我们开发程序的时候,经常会遇到选择题,例如,年龄大于18,你就可以抽烟喝酒烫头,年龄小于18,你就只能吃饭喝水.在我们的代码中,我们可以用if语句来实现这种判断 语法一: if( condition ){ statement1;} 在说if语句之前,先来看两个方法prompt()和alert() prompt 和用户进行交互的 语法:prompt() 功能:弹出输入框 返回值: 1.点击确定,返回输入内容 2.点击取消,返回null alert 语法:alert() 功能:弹出警告对…
1. 使用 Array.includes 来处理多重条件 // 条件语句 function test(fruit) { if (fruit == 'apple' || fruit == 'strawberry') { console.log('red'); } } function test(fruit) { // 把条件提取到数组中 const redFruits = ['apple', 'strawberry', 'cherry', 'cranberries']; if (redFruits…
1.对多个条件使用Array.includes eg: function test(fruit){                                                                                                                function test(fruit){ if(fruit=='apple' || fruit=='cherry' ){                        可改写为…
[笔记] // 简单的语句用三目运算符也可以的(除了需要return的) 1 == 1 ? console.log('执行了...1') : console.log(); 1 == 2 ? console.log('执行了...1111') : 2 == 2 ? console.log('执行了...2') : console.log(); // 条件重构前(条件多了以后,一动就要看懂所有逻辑!) if (1 || 1) { console.log('执行了...1--if...else');…
一,效果图. 二,代码. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>javascript 条件语句</title> </head> <body> <p>如果时间早于20:00,会获得问候“Good day”.</p> <button onclick="myFunction()…