Answers for "check if array has"

77

javascript array contains

var colors = ["red", "blue", "green"];
var hasRed = colors.includes("red"); //true
var hasYellow = colors.includes("yellow"); //false
Posted by: Guest on October-19-2019
8

typescript check if element in array

your_array.includes(the_element)
Posted by: Guest on March-25-2020
1

js test if array

if(Array.isArray(myVarToTest)) {
	// myVatToTest is an array
} else {
	// myVarToTest is not an array
}
Posted by: Guest on September-02-2020

Code answers related to "check if array has"

Code answers related to "Javascript"

Browse Popular Code Answers by Language