Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. dogs.forEach(dog => {
  2. console.group(`${dog.name}`);
  3. console.log(`This is ${dog.name}`);
  4. console.log(`${dog.name} is ${dog.age} years old`);
  5. console.groupEnd(`${dog.name}`);
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement