How to access JSON object in JavaScript
ashish shinde
Select an image from your device to upload
Json objects are written in ket/value pairs.Example:
{ "name":"John", "age":30, "car":null }
we can fetch above object by key value.When we will POST it through ajax callwe should stringyfy it like followings
JSON.stringify({ "name":"John", "age":30, "car":null })