I am relatively new to web development and web applications. I have heard about JSON but am not sure exactly what its uses are.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSON is a format for encoding information returned by the server. When you call a script with AJAX/XHR (e.g. with JavaScript) the returned information can come via XML, JSON, or another format. JSON is simply a way to return that data in an object structure native to JavaScript – in a way that generally doesn’t require a lot of parsing, like XML does.