Skip to content

Instantly share code, notes, and snippets.

View hanier10's full-sized avatar
:bowtie:

Hanier Morales hanier10

:bowtie:
View GitHub Profile
@Klerith
Klerith / instalaciones-next.md
Last active July 4, 2024 05:45
Instalaciones recomendadas para el curso de Next.js 13 >
@Klerith
Klerith / README.md
Last active June 18, 2024 02:23
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 }!`)
 }