var x = window.location.hash;
if ((x === '#one' || x === '#two' || x === '#three') !== true) {
console.log('nope');
}
var a = ['#one', '#two', '#three'];
var x = window.location.hash;
if (a.indexOf(x) < 0) {
console.log('nope');
}
Метод indexOf() возвращает первый индекс, по которому данный элемент может быть найден в массиве или -1, если такого индекса нет.
(x === '#one' || x === '#two' || x === '#three') !== true
x != '#one' && x != '#two' && x != '#three'