Clone Objects in JavaScript

object,tipjs

Clone Objects in JavaScript

const food = { beef: '🥩', bacon: '🥓' }

// "Spread"
{ ...food }

// "Object.assign"
Object.assign({}, food)

// "JSON"
JSON.parse(JSON.stringify(food))

// RESULT:
// { beef: '🥩', bacon: '🥓' }

Có thể bạn đã miss một số snippets code

Convert Array-like to True Array

Convert Array-like to True Array

Ajax, call jQuery POST to node.js expressjs

Ajax, call jQuery POST to node.js expressjs

Optional chaining javascript

Optional chaining javascript

Remove array of objects from another array of objects

Remove array of objects from another array of objects

Spread Operator for Objects

Using the spread operator during an Object declaration will assign the properties of the referenced Object to the new Object.