A component in 7 lines of JavaScript – ember-paper, ember-pickaday together
It is unarguable how ready to use components can boost the application development. If you are creating an ambitious web application, you… (more…)
Read more »I was working on a problem on Codewars.com and I stumbled upon an interesting solution on StackOverflow. Someone was asking how to reverse an array WITHOUT using .reverse(). Here is one solution someone wrote: let reverse=a=>[…a].map(a.pop,a) I… Read more