You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

solution-part-4.js 382B

1234567891011121314
  1. let holdCabinet1 = ['duct tape', 'gum', 3.14, false, 6.022e23];
  2. let holdCabinet2 = ['orange drink', 'nerf toys', 'camera', 42, 'parsnip'];
  3. console.log(holdCabinet1.concat(holdCabinet2));
  4. console.log(holdCabinet1);
  5. console.log(holdCabinet1.slice(1,2));
  6. console.log(holdCabinet1);
  7. holdCabinet1.reverse();
  8. console.log(holdCabinet1);
  9. holdCabinet2.sort();
  10. console.log(holdCabinet2);