js check if array
Array.isArray(object);if(Array.isArray(myVarToTest)) {
// myVatToTest is an array
} else {
// myVarToTest is not an array
}// If you want to test if a variable (object) is an instance of
// an array. You can use the Array.isArray(varName) method
// this method takes one argument, the variable or object you want to test
// and returns true, if the argument is an array
// or false, if the argument is not an array
if (Array.isArray(object)) {
// is true
} else {
// is false
}
Array.isArray([1, 2, 3, 4]); // Returns true
Array.isArray(4); // returns false
// this could be used for flattening an array of arrays
Array.isArray([1, 2, 3]); // true
Array.isArray('asdf'); // falsevar colors=["red","green","blue"];
if(Array.isArray(colors)){
//colors is an array
}Array.isArray(yourItem)
Also in JavaScript:
- python run javascript
- getting whole json object
- display array in div javascript
- creating a 2d array in js
- jquery only number allowed to 10 digit
- vs code terminal json object not showing something shows [object]
- how to remove warnings in react js console
- javascript increment
- format currency javascript
- angular flex layout
- bootstrap 4 form validator with jquery
- jquery count selected options
- calling javascript file in html
- error handling in call back function in nodejs
- ready function javascript
- javascript eval passing variable
- how to compare a string with its ending in javascript
- React looping hooks to display in other hook
- how to pass props in react test cases
- shadow elevation react native
- format JSON code javascript
- angularjs iframe src binding
- oncheck checkbox javascript
- escape in javascript