Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created February 15, 2019 16:54
Show Gist options
  • Save Kamilnaja/bc6ebd6ff64233b1d1869a1089a3ff62 to your computer and use it in GitHub Desktop.
Save Kamilnaja/bc6ebd6ff64233b1d1869a1089a3ff62 to your computer and use it in GitHub Desktop.
double price property in js obj
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