Skip to content

Instantly share code, notes, and snippets.

View datrujillog's full-sized avatar
🤪
Picando Código

Diego Trujillo datrujillog

🤪
Picando Código
View GitHub Profile
@datrujillog
datrujillog / README.md
Created October 17, 2023 17:35 — 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 }!`)
 }
@datrujillog
datrujillog / Instalaciones-React.md
Created September 24, 2021 16:02 — forked from Klerith/Instalaciones-React.md
Instalaciones recomendadas para mi curso de React de cero a experto