# Object in Javascript

# What is an Object in Javascript ?

### An object is a data type that can take in collections of key-value pairs.

### JavaScript is an object-based language. Everything is an object in JavaScript.

# Javascript Object Methods :-

### Object.create() :

### This method is used to create a new object with the specified prototype object and properties.

### Object.assign() :

### This method is used to copy enumerable and own properties from a source object to a target object.

### Object.getPrototypeOf() :

### This method returns the prototype of the specified object.

### Object.setPrototypeOf() :

### This method sets the prototype of a specified object to another object.

### Object.values() :

### This method returns an array of values.

### Object.defineProperty() :

### This method is used to describe some behavioral attributes of the property.

### Object.is() :

### This method determines whether two values are the same value.
