Skip to content

Latest commit

 

History

History

objects

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

JavaScript - Objects

Object is a collection of named values.

Objects will have properties and methods.

Except primitive values, almost everything in JavaScript is objects.

We can also make primitive values as object using new keyword.

  • Create an Object:
    const nameOfObject = {key: value}