We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e4543 commit 76d249dCopy full SHA for 76d249d
app.js
@@ -3,7 +3,7 @@ var app = express();
3
4
app.get('/', function(req, res){
5
res.writeHead(200, { 'Content-Type': 'application/json' });
6
- res.write(JSON.stringify({"cities" : ["San Francisco", "Amsterdam", "Berlin", "New York", "Tokyo"]}));
+ res.write(JSON.stringify({cities : ["San Francisco", "Amsterdam", "Berlin", "New York", "Tokyo"]}));
7
res.end();
8
});
9
0 commit comments