This is what I currently have:
if(this.selectedItem.label == "str1"
|| this.selectedItem.label == "str2"
|| this.selectedItem.label == "str3"
|| this.selectedItem.label == "str4") {
}
I am curious if there is a more concise way to refer to "this.selectedItem.label" only once.