A. JavaScript Object Notation Basic Functions

  1. JSON.parse() - Use to convert strings into JSON Objects.
const users = '{"name": "aryan", "age": 21, "height": 6.3}'
const users_parse = JSON.parse(users)
  1. JSON.stringify() - Used to convert JSON Object to string.
const user2 = {
    name   : "ARYAN",
    gender : "MALE",
}
console.log(user2)

const user2string = JSON.stringify(user2)
console.log(user2string)

B. What is HTTP Server?

C. Firing a Request!