Skip to content

Instantly share code, notes, and snippets.

View PandaDesigner's full-sized avatar

Pedro Fernández PandaDesigner

View GitHub Profile
@PandaDesigner
PandaDesigner / README.md
Created January 10, 2023 04:37 — 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 }!`)
 }