Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. const array = ['😉','😊','😇']
  2. const copyWithEquals = array // Changes to array will change copyWithEquals
  3. const copyWithSpread = [...array] // Changes to array will not change copyWithSpread
  4.  
  5. array[0] = '😡' // Whoops, a bug
  6.  
  7. console.log(...array) // 😡 😊 😇
  8. console.log(...copyWithEquals) // 😡 😊 😇
  9. console.log(...copyWithSpread) // 😉 😊 😇
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement