Module providing in_array function.
npm install @aw030/in_array let needle = "needle";
let haystack = ["needle", "noodle"];
if (in_array(needle, haystack)){
console.log("str is in array!");
}else{
console.log("str is not in array!")
}