Rest API - Request and Response Format
What will be the output of this JSON string parsed in JavaScript?
const jsonString = '{"active": true, "count": 5}';
const obj = JSON.parse(jsonString);
console.log(obj.active && obj.count > 3);