What is the fundamental behind
XmlHttpRequest is the fundamental behind
What is
What is JSON?
JSON is a very lightweight data format based on a subset of the JavaScript syntax, namely array and object literals. JSON allows communicating with server in a standard way. JSON is used as communication notation instead of XML.
var oCar = { "color”: "Yellow", "Speed”: 100, }; alert (oBike.color); //outputs " Yellow " Alert (oBike.Speed); //outputs 100The above code creates a JavaScript object Car with two properties Color and Speed
0 comments:
Post a Comment