将“switch”重写为“if”
重要性:5
使用if..else
编写代码,使其对应于以下switch
switch (browser) {
case 'Edge':
alert( "You've got the Edge!" );
break;
case 'Chrome':
case 'Firefox':
case 'Safari':
case 'Opera':
alert( 'Okay we support these browsers too' );
break;
default:
alert( 'We hope that this page looks ok!' );
}
为了精确匹配switch
的功能,if
必须使用严格比较'==='
。
对于给定的字符串,简单的 '=='
也能起作用。
if(browser == 'Edge') {
alert("You've got the Edge!");
} else if (browser == 'Chrome'
|| browser == 'Firefox'
|| browser == 'Safari'
|| browser == 'Opera') {
alert( 'Okay we support these browsers too' );
} else {
alert( 'We hope that this page looks ok!' );
}
请注意:结构 browser == 'Chrome' || browser == 'Firefox' …
被拆分为多行以提高可读性。
但 switch
结构仍然更简洁、更具描述性。