frontend-challenges icon indicating copy to clipboard operation
frontend-challenges copied to clipboard

115 - forEach and this - javascript

Open jsartisan opened this issue 1 year ago • 0 comments

index.js

let group = {
  title: "Our Group",
  students: ["John", "Pete", "Alice"],

  showList() {
    this.students.forEach((student) => {
      console.log(this.title + ': ' + student);
    });
  }
};

export { group };

jsartisan avatar Jul 27 '24 07:07 jsartisan