772 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			772 B
		
	
	
	
	
	
	
	
title
| title | 
|---|
| Get Query Parameter Input from the Client | 
Get Query Parameter Input from the Client
Given the hint after the stub, "/name?first=&last=," we can build the response like so:
 app.get("/name", function(req, res) {
   var firstName = req.query.first;
   var lastName = req.query.last;
   // Send the json object
 });