Create static constants in ES6 / ECMAScript2015
The new ECMAScript2015 brings a lot of new funcionality but there’s something that is not possible without doing a little workaround. Let’s see the code Now you can use the constant just like this
The new ECMAScript2015 brings a lot of new funcionality but there’s something that is not possible without doing a little workaround. Let’s see the code Now you can use the constant just like this
I was working in a pet project that consists of creating a 2048 game and then create an AI that plays the game and tries to win it Creating the 2048 game The 2048 original game it’s open source and Read More …
Las promesas (promises) son una buena herramienta a la hora de crear codigo asincrono en aplicaciones JavaScript. En AngularJS podemos usar el servicio $q Este servicio esta basado en la libreria Q de Kris Kowal. Una de las funciones que Read More …