Created
July 7, 2019 14:57
-
-
Save nicolasmendonca/d5cd5c53b1ac0c269f0c75189c19445d to your computer and use it in GitHub Desktop.
This file contains 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 response3 = [ | |
{ purchaseId: 21, productName: 'Bag' }, | |
{ purchaseId: 22, productName: 'Lamp' }, | |
]; | |
const requiredOutput3 = [ | |
{ productId: 31, purchaseId: 21, product: { name: 'Bag' } }, | |
{ productId: 32, purchaseId: 22, product: { name: 'Lamp' } }, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment