Skip to content

Instantly share code, notes, and snippets.

@saloni137
Created December 22, 2022 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saloni137/07a330b925417f1a2f84796a060d7319 to your computer and use it in GitHub Desktop.
Save saloni137/07a330b925417f1a2f84796a060d7319 to your computer and use it in GitHub Desktop.
Method
class Dog{
bark(){
console.log("dog has barked");
}
}
let dog = new Dog();
dog.bark(); // you cannot call bark with "Dog" class instance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment