Created
March 20, 2020 03:00
-
-
Save kluu1/dd1bc40ab066daa02684cdd8ee2b101f 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 day1 = [1399.99, 376.33, 542.43] | |
| const day2 = [809.99, 376.3312, 952.77] | |
| const day3 = [199.99, 976.43, 752.33] | |
| const orders = day1.concat(day2).concat(day3); | |
| console.log(orders); // [1399.99, 376.33, 542.43, 809.99, 376.3312, 952.77, 199.99, 976.43, 752.33] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment