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
// sample shopping cart data | |
const shopping_cart = { | |
items: [ | |
{ id: '1', name: 'T-Shirt Game of Thrones', size: 'XL', taxCode: 'IVA23', quantity: 1, unitPrice: 24.99 }, | |
{ id: '2', name: 'T-Shirt Big Bang Theory', size: 'L', taxCode: 'IVA23', quantity: 2, unitPrice: 12.50 }, | |
], | |
subTotal: 0, | |
tax: 0, | |
total: 0, | |
}; |
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 itemsList = [ | |
"eggs", | |
"milk", | |
"donuts", | |
"butter", | |
"coca-cola", | |
]; | |
function itemize(items: string[]): string[] { | |
return items |