Can we get the variables in the query string in Node.js just like we get them in $_GET in PHP?
$_GET
I know that in Node.js we can get the URL in the request.
In Express, we can simply use req.query.. It's works same as that of $_GET['name'] in PHP.
req.query.
$_GET['name']