An object is an copy of what? code example
Example: make copy of object javascript
var x = {key: 'value'}
var y = JSON.parse(JSON.stringify(x))
//If you do not use Dates, functions, undefined, regExp or Infinity within your object
var x = {key: 'value'}
var y = JSON.parse(JSON.stringify(x))
//If you do not use Dates, functions, undefined, regExp or Infinity within your object