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
interfaces ItemProps { | |
name: string, | |
id: number | |
active?: boolean | |
} | |
data?: Array<String> |
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
let character: string | |
let age: number | |
let isLoggedin: boolean | |
character = 'agung' | |
age = 23 | |
isLoggedin = true |