function song(title, writer, singer, released) {
this.title = title;
this.writer = writer;
this.singer = singer;
this.released = released;
console.log(this);
}
// 인스턴스화 ㄴㄴㄴ
const song1 = song();
const song2 = new song();
new song()
으로 인스턴스화 하지 않으면 아래와 같이 this가 song을 가르키는게 아니고, window를 가르킨다.데브리 유튜브 (<- 정말 좋음)