The DOM has two approaches for object to sense events: first is top down approach and second is bottom up approach. Top down approach is…
View More Event Capturing and Bubbling in JavaScriptTag: JavaScript
JavaScript: Why does 3 + true = 4? (and 7 other tricky equations)
How to Follow Along It’s about to get weird — and you’re going to want to follow along with me. You can open up your Chrome Developer Console…
View More JavaScript: Why does 3 + true = 4? (and 7 other tricky equations)ECMAScript5 Strict Mode, JSON, and More….
Introduction There are a number of other new features and APIs that need attention, as well. The largest of which are Strict Mode and native JSON support. Strict Mode…
View More ECMAScript5 Strict Mode, JSON, and More….Local Storage and Session Storage
What is localStorage? local storage is property for accessing Storage object, which is used to store and retrieve data from user’s browser. It is accessible…
View More Local Storage and Session Storage