Skip to content

Instantly share code, notes, and snippets.

@emrekasg
Created April 2, 2020 17:23
Show Gist options
  • Save emrekasg/3a7ec7414ccfe65091054a11cbcf54c2 to your computer and use it in GitHub Desktop.
Save emrekasg/3a7ec7414ccfe65091054a11cbcf54c2 to your computer and use it in GitHub Desktop.
forof_loop.js
const products = [
{ name: 'IPhone X', price:"700$" },
{ name: 'Another Phone', price:"500$"},
]
for(const item of products){
console.log(`Name : ${item.name}, Price ${item.price}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment