how to check somehting is not an array in 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