Answers for "js check if array[index] is false"

9

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
0

javascript check array index null

if (array[index] != null) {
  // The == and != operators consider null equal to only null or undefined
}
Posted by: Guest on January-19-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language