Advertisement
rickyc81

Untitled

Dec 18th, 2020
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const data = {
  2.   vento: 100,
  3.   pioggia: "mille",
  4.   cacca: "assai"
  5. };
  6.  
  7. for (const key in data) {
  8.   console.log(`${key}: ${data[key]}`);
  9.   // invio
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement