Skip to content

Instantly share code, notes, and snippets.

@kluu1
Created March 20, 2020 03:00
Show Gist options
  • Select an option

  • Save kluu1/dd1bc40ab066daa02684cdd8ee2b101f to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/dd1bc40ab066daa02684cdd8ee2b101f to your computer and use it in GitHub Desktop.
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