Skip to content

Instantly share code, notes, and snippets.

@dewey92
Created May 8, 2019 06:32
Show Gist options
  • Save dewey92/ee51c843de8a37e64c863d34a269b4bf to your computer and use it in GitHub Desktop.
Save dewey92/ee51c843de8a37e64c863d34a269b4bf to your computer and use it in GitHub Desktop.
Generics Array
interface Array<T> {
map: ...
filter: ...
reduce: ...
length: number;
...
}
const names: Array<string> = ['jihad', 'waspada']
const odds: Array<number> = [1, 3, 5, 7]
// etc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment