Skip to content

Instantly share code, notes, and snippets.

@ankitamasand
Created April 17, 2019 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitamasand/0245d775fb202da0ea80900fb4d18cf0 to your computer and use it in GitHub Desktop.
Save ankitamasand/0245d775fb202da0ea80900fb4d18cf0 to your computer and use it in GitHub Desktop.
interface CustomArray {
[index: number]: string
}
let cars: CustomArray = ['Hatchback', 'Sedan', 'Land Rover', 'Tesla Model S']
console.log('Element at position 1', cars[1]) // 'Sedan'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment