11 followers
Constant learner of all things related to web development, mostly focused on Front End w/ JS and React but build also the backends for my side projects.
CSS animations are great but sometimes you wish to do change your DOM once it has ended, who knows probably you want to remove the element that you...
The Execute Around it's a pattern that lets us simplify our code and make more clean and easy to read. Basically, the main focus of this approach is...
In Ruby there are many methods that accept blocks, one of the first that comes to mind is the times method that allows us to run specific block X...
If you've worked with React.js I am sure you already used a precious package named classnames, if you haven't you definitely need to take a look at...
Or how to simplify and shorten your loops ยท The reduce method looks really similar to the JavaScript one, iterates over all the elements in an Array and...
Kata: Link You have to create an algorithm that will swap only the odd numbers, this was the solution submitted by me: function sortArray(array){ ...