Answers for "what does [ mean in json"

2

json full form

JSON stands for JavaScript Object Notation. 
It is a lightweight format for storing and transporting data. 
It is often used when data is sent from a server to a web page. 
It is "self-describing" and easy to understand.
Posted by: Guest on December-15-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language