Skip to content

Instantly share code, notes, and snippets.

@NhanKhangg98
Created September 11, 2022 09:19
Show Gist options
  • Save NhanKhangg98/a3712eb0a6e6d3db1b4a11c6ba0242e1 to your computer and use it in GitHub Desktop.
Save NhanKhangg98/a3712eb0a6e6d3db1b4a11c6ba0242e1 to your computer and use it in GitHub Desktop.
const cars = [
{name:'Ford',price:200},
{name:'Nissan',price:400},
{name:'Nissan',price:600}
]
const str = cars.forEach((value)=> {
console.log(`${value.name} is ${value.price}`);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment