Answers for "how to check if variable is in array javascript"

4

check if a variable is array in javascript

// inside if else check
if(Array.isArray(myVarToTest)) {
	// myVatToTest is an array
} else {
	// myVarToTest is not an array
}
Posted by: Guest on January-08-2021
9

how to check if item is in list js

var myList=["a", "b", "c"];
mylist.includes("d")//returns true or false
Posted by: Guest on May-13-2020

Code answers related to "how to check if variable is in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language