Objects and Object Constructors | The Odin Project

PHOTO EMBED

Sun Jul 17 2022 18:13:59 GMT+0000 (Coordinated Universal Time)

Saved by @pycajiqutu #javascript

function Student(name, grade) {
  this.name = name
  this.grade = grade
}

Student.prototype.sayName = function() {
  console.log(this.name)
}
Student.prototype.goToProm = function() {
  console.log("Eh.. go to prom?")
}
content_copyCOPY

https://www.theodinproject.com/lessons/node-path-javascript-objects-and-object-constructors