Object()
The Object constructor turns the input into an object. Its behavior depends on the input's type.
- If the value is
nullorundefined, it creates and returns an empty object. - Otherwise, it returns an object of a Type that corresponds to the given value.
- If the value is an object already, it returns the value.
Syntax
new Object(value)
Object(value)
Note:
Object()can be called with or withoutnew. Both create a new object.
Parameters
value- : Any value.