場所hrefのさまざまな条件にswitchcaseステートメントを使用したいと考えています。ifステートメントを書き続けるのを避けようとしています
if (/red/.test(self.location.href)){
//do this red
}
if (/blue/.test(self.location.href)){
//do this blue
}
if (/yello/.test(self.location.href)){
//do this yellow
}