Posts by fmsf • 239 points
2 posts
-
12
votes3
answers4929
viewsA: What is the point of using double negation in Javascript?
The double negation serves to make the return of the function more typesafe. It is a good technique to ensure that certain functions only return boolean values, thus abstracting the user from the…
javascriptanswered fmsf 239 -
1
votes2
answers1107
viewsA: What is API and how does it work?
API means "Application Programming Interface". It is basically the public methods feat offered by a framework.