Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

comments in json

JSON does not support comments.

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

how to comment in a json file

Sorry :3 no comments in JSON
Comment

how to comments in json file

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

json comments

JSON does not support comments.

HOWEVER, some popular .json files like (tsconfig, eslint, ...) allow comments
because the tools that use them deal with comments appropriatly.
Comment

why can i put comments in some json files

In some files the option for checking comments is off by default 
(tsconfig, tslint and eslint configs), as corresponding tools allow comments in
JSON (this is hardcoded). 

So IDEs recognize this and allow you to add comments even if standard 
doesnt allow.

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

Can comments be used in JSON?

No.

The JSON is data only, and if you include a comment, then it will be data too.

You could have a designated data element called "_comment" (or something) that should be ignored by apps that use the JSON data.

You would probably be better having the comment in the processes that generates/receives the JSON, as they are supposed to know what the JSON data will be in advance, or at least the structure of it.

But if you decided to:

{    "_comment": "comment text goes here...",    "glossary": {       "title": "example glossary",       "GlossDiv": {          "title": "S",          "GlossList": {             "GlossEntry": {                "ID": "SGML",                "SortAs": "SGML",                "GlossTerm": "Standard Generalized Markup Language",                "Acronym": "SGML",                "Abbrev": "ISO 8879:1986",                "GlossDef": {                   "para": "A meta-markup language, used to create markup languages such as DocBook.",                   "GlossSeeAlso": ["GML", "XML"]                },                "GlossSee": "markup"             }          }       }    } } 
Comment

Can comments be used in JSON?

No.
The JSON is data only, and if you include a comment, then it will be data too.
You could have a designated data element called "_comment" (or something) 
that should be ignored by apps that use the JSON data.
But if you decided to:
{
   "_comment": "comment text goes here...",
   "grocery": {
      "title": "Some title",
   }
}
Comment

Can comments be used in JSON ?

{
  "//": "Some browsers will use this to enable push notifications.",
  "//": "It is the same for all projects, this is not your project's sender ID",
  "gcm_sender_id": "1234567890"
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: node.js anonymous function 
Javascript :: angular how to check a radiobox 
Javascript :: jspdf create table 
Javascript :: javascript get page args 
Javascript :: react tabs 
Javascript :: jquery validation on click 
Javascript :: new date() javascript 
Javascript :: javascript get client page title 
Javascript :: javascript mod 
Javascript :: extract content from string html 
Javascript :: Type writer in react 
Javascript :: circular progress bar js 
Javascript :: callback function js 
Javascript :: JavaScript Display Objects 
Javascript :: javascript function return multiple 
Javascript :: remove specific item from array 
Javascript :: every break js 
Javascript :: odd even javascript 
Javascript :: react-bootstrap example 
Javascript :: json length javascript 
Javascript :: how to convert string to uppercase in javascript 
Javascript :: find average of numbers 
Javascript :: generate and download xml from javascript 
Javascript :: file_get_contents in javascript 
Javascript :: update map value javascript 
Javascript :: javascript filter 
Javascript :: array with unique values javascript 
Javascript :: isChecked radio button jQuery 
Javascript :: nodejs exit code 
Javascript :: get javascript component position 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =