Javascript Use a for/of loop to iterate over the array of students. For each student, use a template literal to print out their name, age, and major in a formatted string. (e.g. John is 18 years old and is studying Computer Science.) Within the template literal, use object dot notation to access the name, age, and major properties of the student object. Use a console.log() to print out the formatted string for each student. Test the code by running it and verifying that it prints out the details of each student in a formatted string. ============================================================================== const students = [   { name: "John", age: 18, major: "Computer Science" },   { name: "Newton", age: 19, major: "Mathematics" },   { name: "Barry", age: 20, major: "Physics" }, ]; // Iterate through the array of objects students using for/of     // Print a message to the console that includes the student's name, age, and major     // Example: John is 18 years old and is studying Computer Science.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter6: Arrays
Section: Chapter Questions
Problem 5GZ
icon
Related questions
Question

Javascript

  1. Use a for/of loop to iterate over the array of students.

  2. For each student, use a template literal to print out their name, age, and major in a formatted string. (e.g.

    John is 18 years old and is studying Computer Science.)

  3. Within the template literal, use object dot notation to access the name, age, and major properties of the student object.

  4. Use a console.log() to print out the formatted string for each student.

  5. Test the code by running it and verifying that it prints out the details of each student in a formatted string.
    ==============================================================================

const students = [
  { name: "John", age: 18, major: "Computer Science" },
  { name: "Newton", age: 19, major: "Mathematics" },
  { name: "Barry", age: 20, major: "Physics" },
];

// Iterate through the array of objects students using for/of
    // Print a message to the console that includes the student's name, age, and major
    // Example: John is 18 years old and is studying Computer Science. 
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT