Technical Books read in 2018

Books on Progressive Web Apps, JavaScript frameworks, Doom, a 20 year old classic and a developer life manual. Here are the technical books I read this year.  Building Progressive Web Apps Following my attendance at NDC 2018 I wanted to find out more about Progressive Web Apps (PWA) so I started with this book. It became […]

My Angular development environment

Virtual Box I use Virtual Box with Windows 10 as the Guest Operating System. It is a combination that works well and other than the usual Windows update dance, it doesn’t cause me any distractions.  Visual Studio Code All my Angular development have been built using Visual Studio Code which allows me to build, compile […]

Sorting numbers within a JavaScript array

The problem You need to sort this JavaScript array in numeric order: Arrays have a sort method, so lets try using that The output from running this in Chrome 67 is that the array is now sorted as: [1, 11, 2] Which is not what we want, the number 11 is in the wrong place. […]