The Promise of Mobile HTML5

Less than a year ago it seemed like HTML5 was going strong. With Facebook and Linkedin adopting the technology to reach most of the screens on the mobile and on the desktop. Linkedin had the better hybrid mobile app (HTML5 + native) and published a series of videos and articles about »

To Fix JavaScript toFixed

The problem with the built in toFixed function in JavaScript, is that it always round the numbers. It’s like calling Math.round() Call 9.513.toFixed() => 10 Call 9.226.toFixed(2) => 9.23 Why would you want that to auto round. If I wanted to round I would »