Blog

Recent Posts

Truth and Falsy in JavaScript

1 minute read

Javascript auto converts any value used in Boolean context (example an if condition) to either true or false. This way of implicitly converting a type is c...

Responsive vs Adaptive Design

less than 1 minute read

Responsive Design - Responsive websites respond to the browser size at any given point. No matter the browser width, the site adjusts its layout.

Difference between CSS reset and normalize

less than 1 minute read

Normalize.css Preserves useful defaults rather than “unstyling” everything. Corrects some common bugs that are out of scope for reset.css. Doesn’t clu...

Constructor in JavaScript

less than 1 minute read

A constructor in JavaScript is a function that is called with the “new” operator.