JavaScript – Objects and Arrays
Objects let us group values to build more complex structures. Objects Objects are a type of value. They’re a random collection of properties. const note = { isPrivate: true, content: “secret” }; The Parts of an Object Braces Property name Colon Property value Comma In JS, braces can be used to start a block of … Read more