check if an element is in array js code example
Example: how to check if item is in list js
var myList=["a", "b", "c"];
mylist.includes("d")//returns true or false
var myList=["a", "b", "c"];
mylist.includes("d")//returns true or false