-
Tutorial: Javascript ES6 (ES2015), get started quickly with babel v6+, Gulp, Browserify and Use Arrow Functions, Classes, Import syntax…
This post is an update to my old tutorial on how to start writing ES6 on the front end with babel.
-
League of Legends Best Match
A league of legends fan application I created. It searches the last 10 ranked matches played by the player searched and orders them by best match to worst. The application is made with: MongoDB to save searched matches temporarily, Nodejs with Express in the back end, Riot Games RESTful API to search data about the…
-
Three dots in Javascript: How to use the Spread Operator and its use with Immutable Arrays
What are the three dots you see in javascript code snippets? The three dots are called the spread operator. It’s a new feature brought in with ES6. In this post I will show you some examples where you can use it. I will then talk about how they are helpful for Immutability in your code.