Created
March 20, 2020 04:03
-
-
Save kluu1/476529981fa808e1a954fec433fd5351 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const cart1 = ['mouse', 'keyboard']; | |
| const cart2 = ['monitor', 'speakers', 'charger']; | |
| const cart3 = ['cables', 'mouse pad'] | |
| const combinedCarts = cart1.concat(cart2, cart3); | |
| console.log(combinedCarts); // ["mouse", "keyboard", "monitor", "speakers", "charger", "cables", "mouse pad"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment