Created
April 2, 2020 17:23
-
-
Save emrekasg/3a7ec7414ccfe65091054a11cbcf54c2 to your computer and use it in GitHub Desktop.
forof_loop.js
This file contains hidden or 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 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