What does this mean?
var settings = {
"column-1" : ["block-1"],
"column-2" : ["block-2"]
};
|
What does this mean?
|
|||||||||||||||||
|
|
This will create a new object and store it in the The object is created by an Object literal and consist out of two propertys ( |
|||
|
|
|
It means one should [likely] read a tutorial/book on JavaScript before asking questions like this on SO ;-) (Explaining what "it means" will likely have not much "practical meaning" by itself.) Like Eloquent JavaScript: A Modern Introduction to Programming I believe the exact construct/term that is being sought is "object literals" -- Happy coding. |
|||||
|
|
It defines an object containing two properties (column-1 and column-2) which both contain arrays which both contain a single value (block-1 an block-2). Due to the |
|||
|
|
|
Initialized a variable named |
|||
|
|