Ecmascript 6 (scratchbook)

This page is mainly used for me to add notes on things I encounter while working with EcmaScript 6 in Chrome (48) Classes: When working with EcmaScript 6 you can use classes. Classes are defined like so: class doSomething{ constructor(param){ this.param = param; } someMethod(){ console.log(‘do something’); } } Really straight forward Inheritance Inheritance can […]

AngularJS a new world opens

In my spare time I’m currently looking into AngularJS. Before I started working on it I was skeptical. The main reason for it is that it’s  JavaScript framework and I’m not particularly fan of this language at all. Error handling is  mess and the fact that it’s weakly typed isn’t great either. So why start […]