Guest User

Untitled

a guest
May 25th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // Example 1
  2. const books = ["Don Quixote", "The Hobbit", "Alice in Wonderland", "Tale of Two Cities"];
  3. console.log(...books); // Don Quixote The Hobbit Alice in Wonderland Tale of Two Cities
  4.  
  5. // Example 2
  6. const primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29];
  7. console.log(...primes); // 2 3 5 7 11 13 17 19 23 29
  8.  
  9. // Example 3
  10. const fruits = ["apples", "bananas", "pears"];
  11. const vegetables = ["corn", "potatoes", "carrots"];
  12. const produce = [...fruits, ...vegetables];
  13. console.log(produce); // ["apples", "bananas", "pears", "corn", "potatoes", "carrots"]
Add Comment
Please, Sign In to add comment