What’s the difference between “{}” and “[]” while declaring a JavaScript array? Normally I declare like
var a=[];
What is the meaning of declaring the array as var a={}
What’s the difference between “{}” and “[]” while declaring a JavaScript array? Normally I declare like
var a=[];
What is the meaning of declaring the array as var a={}
it is use for brackets for an array of simple values. eg.
is use for value arrays and objects/properties also. eg.
Nobody seems to be explaining the difference between an array and an object.
[]
is declaring an array.{}
is declaring an object.An array has all the features of an object with additional features (you can think of an array like a sub-class of an object) where additional methods and capabilities are added in the Array sub-class. In fact,
typeof [] === "object"
to further show you that an array is an object.The additional features consist of a magic
.length
property that keeps track of the number of items in the array and a whole slew of methods for operating on the array such as.push()
,.pop()
,.slice()
,.splice()
, etc... You can see a list of array methods here.An object gives you the ability to associate a property name with a value as in:
Object properties can be accessed either via the
x.foo
syntax or via the array-like syntaxx["foo"]
. The advantage of the latter syntax is that you can use a variable as the property name likex[myvar]
and using the latter syntax, you can use property names that contain characters that Javascript won't allow in thex.foo
syntax.A property name can be any string value.
An array is an object so it has all the same capabilities of an object plus a bunch of additional features for managing an ordered, sequential list of numbered indexes starting from
0
and going up to some length. Arrays are typically used for an ordered list of items that are accessed by numerical index. And, because the array is ordered, there are lots of useful features to manage the order of the list.sort()
or to add or remove things from the list.In JavaScript Arrays and Objects are actually very similar, although on the outside they can look a bit different.
For an array:
As you can see arrays in JavaScript can be sparse (valid indicies don't have to be consecutive) and they can contain any type of variable! That's pretty convenient.
But as we all know JavaScript is strange, so here are some weird bits:
This is because everything in JavaScript is an Object (which is why you can also create an array using
new Array()
). As a result every index in an array is turned into a string and then stored in an object, so an array is just an object that doesn't allow anyone to store anything with a key that isn't a positive integer.So what are Objects?
Objects in JavaScript are just like arrays but the "index" can be any string.
You can even opt to not use the square brackets when working with objects!
You can go even further and define objects like so:
they are two different things..
[]
is declaring an Array:given, a list of elements held by numeric index.
{}
is declaring a new object:given, an object with fields with Names and type+value,
some like to think of it as "Associative Array". but are not arrays, in their representation.
You can read more @ This Article
Syntax of JSON
object = {} | { members }
array = [] | [ elements ]
value = string|number|object|array|true|false|null
It can be understood like this:
You can also understand that
var a = {};
is equivalent tovar a= new Object();
Note:
You can use Arrays when you are bothered about the order of elements(of same type) in your collection else you can use objects. In objects the order is not guaranteed.