Explore >> Select a destination


You are here

alexop.dev
| | kamranicus.com
3.8 parsecs away

Travel
| | Override specific property type annotations using mapped, conditional, and intersection types with TypeScript for interfaces or classes
| | yakovfain.com
3.6 parsecs away

Travel
| | This blog is a part of my TypeScript series, and the previous ones are: 1. Why program in TypeScript 2. Structural vs nominal typing 3. Getting started with TypeScript classes 4. Access modifiers public, private, and protected 5. Abstract classes 6. enums We know that TypeScript has built-in types and you can create the custom...
| | wicki.io
3.0 parsecs away

Travel
| | Learn what Typescript feature is possible to implement as Type Alias or Interface and how do they compare.
| | nurkiewicz.com
26.0 parsecs away

Travel
| Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`.