SVG Ruler in Javascript

February 11, 2024 amit 0

OVERVIEW This is a small, compact ruler display tool in an svg container using plain javascript. Its less than 200 lines of code and can […]

Javascript – Promises

April 12, 2022 amit 0

OVERVIEW Promises are a way of handling asynchronous events in javascript. Prior to promises, the only true asynchronous feature was in XMLHttpRequest where ajax calls […]

Javascript – Destructuring

March 7, 2022 amit 0

OVERVIEW Destructuring is a feature which allows us to unpack values from arrays or properties from objects without having to write statements for them. In […]

Javascript Arrow function

March 5, 2022 amit 0

OVERVIEW The arrow function acts somewhat like the lamdba expression in Java. It allows you to define functions in a shorthand syntax. The sample code […]