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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!