Live Traffic

Our Story

Ceremony

Search

Just Married

JSON 1

by - June 29, 2010

JSON stands for JavaScript Object Notation that is a language independent text format which is fast and easy to understand. That means it is really very simple and easy to learn without sparing much time. In another words we can say that JavaScript Object Notation is a lightweight data-interchange format that is completely language independent but with some conventions.

So in this section of JSON tutorial we are going to discuss JSON with JavaScript.

Creating Object in JavaScript using JSON

We can create objects in JSON with JavaScript in many ways :

1. "var JSONObjectName ={};" will create an empty object.

2. "var JSONObjectName= new Object();" will create a new Object.

3. "var JSONObjectName = { "name ":"amit", "age":23}; will create an Object with attribute name which contains value in String and age with numeric value.

Now by creating this object we can access attributes by only "." operator.

Here is the full example code for creating an Object in JavaScript using JSON:

ObjectJavaScript-JSON.htm


Output:


To run this JavaScript and JSON example you have to just run this ".htm" file on your browser.

You May Also Like

0 comments