/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

rkoutnik.com
| | 2ality.com
5.5 parsecs away

Travel
| | This blog post is a quick introduction to TypeScript's notation for static types.
| | blog.scottnonnenberg.com
5.4 parsecs away

Travel
| | So you're a Javascript developer, and you want to stop writing Javascript. Typescript seems like a good option, but you've always used dynamically-typed languages. You're uncertain about jumping in...
| | sitr.us
4.4 parsecs away

Travel
| | In type theory a unit type is any type that represents exactly one possible value. The unit types in TypeScript include null, undefined, and literal types. TypeScript also has the type void which is used as the return type for functions that don't have an explicit return value. In JavaScript a function that does not explicitly return implicitly returns undefined; so at first glance it would seem that void is an alias for the undefined type. But it is not! ...
| | yakovfain.com
27.8 parsecs away

Travel
| TypeScript is a superset of JavaScript and over the last year it's gaining popularity by leaps and bounds. Angular 2 and RxJS 5 are written in Typescript. I believe about a million of developers are using TypeScript today for app development (this is not official stats). I'm using TypeScript for more than a year and...