Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

Index signature property

class Games {
// Index signature property
[gamesName : string] : string

}
let games = new Games();
games['G1'] = "Call of duty";
games['G2'] = "Battlefield";
//...
 
PREVIOUS NEXT
Tagged: #Index #signature #property
ADD COMMENT
Topic
Name
8+9 =