Guest User

Untitled

a guest
Jun 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. let arr = [1,2,3,4,5]
  2.  
  3. arr.concat(6)
  4.  
  5. console.log(arr)
  6. // Expected output: [1,2,3,4,5]
  7.  
  8. let arrClone = arr.concat("I am six")
  9.  
  10. console.log(arrClone)
  11. // Expected output: [1,2,3,4,5, "I am six"]
  12.  
  13. console.log(arr)
  14. // Expected output: [1,2,3,4,5]
Add Comment
Please, Sign In to add comment