how to check if a string is in a list javascript 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