Last active
February 17, 2019 23:17
-
-
Save dyackson/47752cef48bd2c2883e8b65a02bcb274 to your computer and use it in GitHub Desktop.
Initial 2-param function
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
function getOrderCopyWithItems(items, order) { | |
return { | |
...order, | |
items: [...order.items, ...items], | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment