Truth and Falsy in JavaScript
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...
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...
Below are The seven rules of a great Git commit message.
C-r in Emacs multi term invokes (isearch-backward) command. To search bash command history we can use M-r instead.
To configure multi term in Emacs to allow login shell
Responsive Design - Responsive websites respond to the browser size at any given point. No matter the browser width, the site adjusts its layout.
Normalize.css Preserves useful defaults rather than “unstyling” everything. Corrects some common bugs that are out of scope for reset.css. Doesn’t clu...
Explained below are some of the different ways of creating Objects in JavaScript.
Each JavaScript object has a private property which holds a link to another object called its prototype. That prototype object has a prototype of its own, an...
A constructor in JavaScript is a function that is called with the “new” operator.
Difference is scope is function based and context is object based.