Skip to content

Instantly share code, notes, and snippets.

View Googluu's full-sized avatar
🦊
Focusing

Sneyder Rodríguez Googluu

🦊
Focusing
View GitHub Profile
@Googluu
Googluu / README.md
Created November 30, 2023 14:24 — forked from Klerith/README.md
Deprecated Method - Decorador

@Deprecated - Method Decorator

En la definición del método, se puede marcar como obsoleto (deprecated) con la justificación. Esto ayudará a que otros developers sepán que deben de utilizar ya la alternativa.

@Deprecated('Most use speak2 method instead')
 speak() {
      console.log(`${ this.name }, ${ this.name }!`)
 }