Created
February 15, 2019 16:54
-
-
Save Kamilnaja/bc6ebd6ff64233b1d1869a1089a3ff62 to your computer and use it in GitHub Desktop.
double price property in js obj
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
let products = [ | |
{ name: "Hat", price: 24.5, stock: 10 }, | |
{ name: "Kayak", price: 289.99, stock: 1 }, | |
{ name: "Soccer Ball", price: 10, stock: 0 }, | |
{ name: "Running Shoes", price: 116.50, stock: 20 } | |
]; | |
console.log( | |
products.map(item => ({name: item.name, price: item.price * 2, stock: item.stock})) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment