Created
March 15, 2022 23:13
-
-
Save jeferandom/f990b496635909b4cbde071ca7af43fe to your computer and use it in GitHub Desktop.
basic interfaces typescript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface SuperHeroe { | |
nombre: string; | |
edad: number; | |
direccion: Direccion, | |
mostrarDireccion: () => string | |
} | |
interface Direccion { | |
calle: string; | |
pais: string; | |
ciudad: string; | |
} | |
const superHeroe: SuperHeroe = { | |
nombre: 'Spiderman', | |
edad: 30, | |
direccion: { | |
calle: 'Main St', | |
pais: 'USA', | |
ciudad: 'NY' | |
}, | |
mostrarDireccion() { | |
return this.nombre + ', ' + this.direccion.ciudad + ', ' + this.direccion.pais; | |
} | |
} | |
const direccion = superHeroe.mostrarDireccion() | |
console.log('direccion', direccion) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment