Question: JavaScript: Given the array friends below, use the Array.forEach() method to iterate through each element and print the name and yearsOfFriendship properties stylized as :
JavaScript:
Given the array friends below, use the Array.forEach() method to iterate through each element and print the name and yearsOfFriendship properties stylized as :
"name: yearsOfFriendship years". For example: "Albert: 3 years"
let friends = [
{ name: "Albert", yearsOfFriendship: 3 },
{ name: "Angela", yearsOfFriendship: 2 },
{ name: "Freddy", yearsOfFriendship: 8 },
{ name: "Agatha", yearsOfFriendship: 6 }
];
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
