Skip to content

Instantly share code, notes, and snippets.

@victorvhpg
Created November 11, 2016 00:50
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 victorvhpg/27b8d02f6afbae9cab141a07ad580b50 to your computer and use it in GitHub Desktop.
Save victorvhpg/27b8d02f6afbae9cab141a07ad580b50 to your computer and use it in GitHub Desktop.
class Retangulo{
constructor(largura, altura){
//...
}
static métodoEstatico(){
return "alguma coisa";
}
};
console.log(Retangulo.métodoEstatico());//"alguma coisa"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment