我怎麼可以做這樣的事情與switch語句:加工開關的情況下
String.prototype.startsWith = function(str){
return (this.indexOf(str) === 0);
}
switch(myVar) {
case myVar.startsWith('product'):
// do something
break;
}
這是等價的:
if (myVar.startsWith('product')) {}
你是對的,如果這是唯一的方法,那麼,是不是整個字符串,而不是一開始的匹配正確的方式 – HyderA