Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. const testArray = ['Silver', 'Happy', 'Xan', 'Kevin']
  2.  
  3. const newArray1 = testArray.slice(0, 2)
  4.  
  5. const newArray2 = testArray.slice()
  6.  
  7. const newArray3 = testArray.slice(-1, 3)
  8.  
  9. console.log(newArray1, newArray2, newArray3)