Javascript evokes strong emotions among the developers. Whether you love it or loathe it, there is no denying that it has some piece of your grey matter. It was created at Netscape in a ten-day hack, steadily became the world’s most widely used programming language. This paper tells the story of the creation, design, evolution, […]

Read More →

The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. CBOR is defined in an Internet Standards Document, RFC 7049. The format has been designed to be stable for decades. The objectives […]

Read More →

In Javascript, Math is a built-in object that has properties and methods for mathematical constants and functions. max() and min() are static methods of Math, you always use it as Math.max(), Math.min() The number arguments that min and max methods can take are zero or more 1 2 Math.max([value1[, value2[, …]]]) Math.min([value1[, value2[, …]]])Math.max([value1[, value2[, […]

Read More →

A service worker is a script that your browser runs in the background, separate from a web page, opening the door to features that don’t need a web page or user interaction. Service workers are a technology to aid developers in: creating realistic, reliable offline experiences vastly improving performance when online logically and dynamically caching […]

Read More →