js return json code example
Example 1: node js return json
var http = require('http');
var app = http.createServer(function(req,res){
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ a: 1 }));
});
app.listen(3000);
// > {"a":1}
Example 2: create a javascript json object
const student = {
name: "bob",
age: 7,
grade: 6
}