json

json is used as a way to store data for javascript it is a good language to learn due to its simple syntax and to start here are some basic commands you might want to learn

this command is used for data it goes ["data": "value" replace value with your value and your data with the name of your data such as the above example

here is a example script

Datastorage Zip
Archive – 333.0 B 39 downloads

another useful command when paired with java script is [JSON.parse(text)]

example code

{
    "data": "saidvalue",
    "data2": "value2",
    "uuid": "0540dd8f-2cb2-4abf-b6a6-f5203fb5d8ac",
    "bianary": "0001000101001110101110101000001100111101111111100101000100111111",
    "version": "1.0.0"
    
}
  
Below are the main json syntax
    []
    {}
    :
    ;
    ,
    ""
    "key ;value",
    digets 0-9
    true/false
    null
            (whitespace)
    \"
Backslash	\\
Forward Slash	\/ (optional)
Backspace	\b
Form Feed	\f
Newline	\n
Carriage Return	\r
Horizontal Tab	\t
    unicode such as example:\u00A9




    These are the json symbol examples