Answers for "are array in js object"

9

Javascript is object array

var colors=["red","green","blue"];

if(Array.isArray(colors)){
    //colors is an array
}
Posted by: Guest on July-22-2019
0

array or object javascript

To remember the difference, you can think of "is a / has a" 

let fruits = [
  orange, 
  mango, 
  banana
];
// Every item in the array "fruits" is a fruit. 

let fruit = {
  seed:{}, 
  endocarp:{}, 
  flesh:{}
};
// The object fruit has every attribute inside the object.
Posted by: Guest on July-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language