Could it be an array and indexOf function?
if(["str1","str2","str3","str4"].indexOf(this.selectedItem.label) > -1){
This is a cross browser solution.
Good, includes (not tested in IE)
if(["str1","str2","str3","str4"].includes(this.selectedItem.label)){ }
source share