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() {
    const that = this;
    
    this.students.forEach(function(student) {
      console.log(that.title + ': ' + student);
    });
  }
};

export { group };

jsartisan avatar Jul 27 '24 07:07 jsartisan