1. JavaScript Tutorial
  2. Loop For & While
  3. Math Object
  4. What is Array
  5. What is JSON
  6. Function in JS
  7. RegExp – Regular Expression

What is JSON

JSON stands for JavaScript Object Notation. JSON is often used when data is sent from a server to a web page.

  • JSON data is written as name/value pairs, just like JavaScript object properties.
  • JSON.parse()
  • JSON.stringify()
  • Example:
{
    "name": "John",
    "age": 22,
    "gender": "male",

}

Learning Path Youtube

No responses yet

Leave a Reply

Your email address will not be published. Required fields are marked *