Two ways you can take advantage of types in JavaScript (without TypeScript)

This blog post describes how you can enable javascript intellisense and design time error highlighting without TypeScript… Read more

Similar

Ethereum JavaScript Ecosystem Updates

It’s been a fairly busy for the last couple of months for the Ethereum javascripters. To start with, there was a really great hackathon with IPFS. You can read Dan Finlay’s excellent write up here. Also, during this time Aaron Davis (Kumavis) made some ex... (more…)

Read more »

Inheritance in JavaScript

JavaScript does not have classes unlike other languages. It uses the concept of prototypes and prototype chaining for inheritance. If you do not what is prototype, please go through this article… (more…)

Read more »