Answers for "what is a json object"

4

json objects

{ "name":"John", "age":30, "car":null }
Posted by: Guest on January-07-2020
3

json object

var myObj, x;
myObj = {"name":"John", "age":30, "car":null};
x = myObj.name;
document.getElementById("demo").innerHTML = x;
Posted by: Guest on April-16-2020
0

What is JSON?

● It is JavaScript Object Notation (is a minimal, readable format 
                                    for structuring data.)
● It is used primarily to transmit data between a server 
and web application, as an alternative to XML.
● Basically, a lightweight version of XML
● In Key: Value format
● Key is always in double quotes and value if 
  string its double quotes and if numbers no quotes
● It is purely based on http protocol, - 
  so it hits the link on the browser and see the results
Posted by: Guest on June-21-2021
-2

what is json

json is a bad thing you shouldn't use
Posted by: Guest on August-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language