Skip to content

Instantly share code, notes, and snippets.

@apcurran
Created May 11, 2021 19:44
Show Gist options
  • Save apcurran/bdc1847430ff28e43ad273190bed56d8 to your computer and use it in GitHub Desktop.
Save apcurran/bdc1847430ff28e43ad273190bed56d8 to your computer and use it in GitHub Desktop.
"use strict";
const homework = {
topic: "JS",
study() {
console.log(`Please write ${this.topic}.`);
}
};
const jsHomework = Object.create(homework);
console.log(jsHomework.topic);
jsHomework.study();
const mathHomework = Object.create(homework);
mathHomework.topic = "Math";
console.log(mathHomework.topic);
mathHomework.study();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment