ZeptoBook Categories typescript
typescript
Type Inference In TypeScript Aug 18 2019 4 min read Adesh
We will learn about type inference in Typescript. What Is Type System A type system is a set of rules that assigns a property called type to the various constructs of a computer program such as variables expressions functions or modules.
Spread Operator In TypeScript Mar 7 2019 4 min read Adesh
In Typescript you can use spread operator to spread the element of an array or object. The spread operator can be used for initializing an array or object from another array or object.
Fresh releases of Visual Studio 2017 for Mac and TypeScript 3.2 Dec 1 2018 4 min read Adesh
Microsoft released fresh version of Visual Studio 2017 for Mac and TypeScript 3.2. Lets have a quick look at these releases. TypeScript 3.2 TypeScript 3.2 release is here.
Cool features of Generics in TypeScript Nov 4 2018 5 min read Adesh
Generics is not a new term in todays programming world. Most of the programming language has this feature. Today we are going to learn about Generics in TypeScript. It is very easy and powerful feature of any programming language.
Learn Functions In TypeScript Oct 28 2018 5 min read Adesh
In this blog we are going to learn about various kind of functions used in TypeScript. Functions are core of any programming language. Functions are used to write readable maintainable and reusable code of blocks in any programming language.