Node.js - HTTP Module
What will the following Node.js code output?
const querystring = require('querystring');
const parsed = querystring.parse('theme=dark&font=large');
console.log(parsed.theme);