JavaScript
-
What are Single Page Applications?
Introduction In the dynamic realm of web development, the evolution of technology continually reshapes the landscape of user experiences. Among the innovations that have gained prominence, Single Page Applications (SPAs) stand out as…
-
JavaScript Best Practices(Part-2)
Use call to Call Methods with a Custom Receiver Ordinarily, the receiver of a function or method (i.e., the value bound to the special keyword this) is determined by the syntax of its caller. In particular,…
-
JavaScript Best Practices(Part -1)
Beware of Implicit Coercions JavaScript allows for some surprising type coercions. The below expression throws an error in most languages. In the above expression JavaScript coerces true as the number 1 and adds…