dictionary implementation in typescript

Dictionary implementation in TypeScript

As a C# developer, Dictionary is very common and it’s a frequent part of development routine. it’s very helpful when we want to look up values based on keys. Just pass the keys and get the values…bingo. Moreover, C# library enables to use it as a generic way (using the same class with different data type – not dependant on specific data type). Recently I … Continue reading Dictionary implementation in TypeScript