JSON comments and JSON5

JSON is data-interchange format, meant to be easy to read for humans, and easy to parse by computers. The format is commonly used for config files, such as package.json, so the lack of comments in the specification is often seen as a limitation.

Go To Post

JavaScript Number type

Number is one of the six primitive data types in JavaScript, unlike in other languages where numbers can be represented in multiple types such as integers, float, double etc. JavaScript only has the one numeric data type (at the moment).

Go To Post