Skip to content

Instantly share code, notes, and snippets.

@alic-xc
Last active January 15, 2023 11:02
Show Gist options
  • Save alic-xc/be862cc95640c64fd242a646364b3a65 to your computer and use it in GitHub Desktop.
Save alic-xc/be862cc95640c64fd242a646364b3a65 to your computer and use it in GitHub Desktop.
Create variable in Typescript
let currencyFormat:string = "NGN" //
let currencyAmount:number = 450
let isCompleted:boolean = true
let transactionHistory:number[] = [1, 2, 3, 4, 5, 6]
let username:any = "1234"
let thirdPartyIntegration: unknown = "https://response.true"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment