Skip to content

Instantly share code, notes, and snippets.

@mohanadkaleia
Created April 13, 2018 03:25
Show Gist options
  • Save mohanadkaleia/427f69d32bf30ac10028a811bd9e29a2 to your computer and use it in GitHub Desktop.
Save mohanadkaleia/427f69d32bf30ac10028a811bd9e29a2 to your computer and use it in GitHub Desktop.
class Animal {
constructor(name) {
this.name = name;
}
eat() {
console.log("Start eating...");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment