javascript check if is a list code example
Example 1: how to check if item is in list js
var myList=["a", "b", "c"];
mylist.includes("d")//returns true or false
Example 2: how to check if something is array javascript
function isArray(value) {
return Object.prototype.toString.call(value) === "[object Array]";
}