JavaScript Data Types Primitive Data type boolean: true, false number string null: empty undefined: no value Non-Primitive Data type object const , let vs var const & let are part of ES6 release, it solves the issue of variable hoisting caused by lexical scoping. const and let are defined as block scoped vs var is… Continue reading JavaScript basics interview cheatsheet
Category: JavaScript
Progressive Web Apps with vue3
What is PWA? PWA is a set of features that bring existing mobile features to the web. Its considered that mobile specific feature could help in user retention. This is the main reason why PWA is gaining popularity. If the mobile experience is added to a web app it eliminates the need to maintain different… Continue reading Progressive Web Apps with vue3