Skip to content

Instantly share code, notes, and snippets.

@Theo-denBlanken
Last active October 2, 2020 09:07
Show Gist options
  • Save Theo-denBlanken/68649cd4aba2c5698e86bd8b31f9f5c6 to your computer and use it in GitHub Desktop.
Save Theo-denBlanken/68649cd4aba2c5698e86bd8b31f9f5c6 to your computer and use it in GitHub Desktop.
Een voorbeeld van een object in JavaScript met 4 properties en 2 methods. Let op de interne verwijzing met het keyword this.
const docent = {
voornaam: "Theo",
achternaam: "den Blanken",
site: "https://blanken5.home.xs4all.nl/",
geboortejaar: 1956,
stelJeVoor() {
console.log(`Hallo in ben ${this.voornaam} ${this.achternaam}`)
},
geefLes() {
window.location.href = this.site;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment