Can I make this statement shorter?
if(abc==\'value1\' || abc==\'value2\' || abc==\'value3\') {//do something}
to make it look similar to this:<
if(abc.match(/^value[1-3]$/)) { //doSomething.... }