Есть ли эквивалент Javascript для цикла python for-else, поэтому примерно так:
searched = input("Input: ");
for i in range(5):
if i==searched:
print("Search key found: ",i)
break
else:
print("Search key not found")
Или мне просто нужно прибегнуть к переменной флага, так что примерно так:
var search = function(num){
found = false;
for(var i in [0,1,2,3,4]){
if(i===num){
console.log("Match found: "+ i);
found = true;
}
}
if(!found){
console.log("No match found!");
}
};