comment json code example

Example 1: comment css

// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */

Example 2: comments in json

JSON does not support comments.

/* CSS/PHP/JS/SQL
Multiple Lines
\*
#Python
'''Python
Multiple Lines'''

Example 3: js comment

//This does not effect the code.
var something = "But this does effect the code!";

Example 4: how to comments in json file

{
	"_comment": "comment text goes here...",
    "name": "your-app-name",
    ...
}