const v = new Video("a"); //{} //Video {title: "a"} // 생성자 함수는 전역을 참조하는 것이 아니라 new가 생성할 빈 객체를 참조한다.
1 2 3 4 5 6 7 8 9 10 11 12
const video = { title: "a", tags: ["a", "b", "c"], showTags() { this.tags.forEach(function(tag) { // to get the current object and then get the tags property console.log(this.title, tag); }, this); } };