Why is it that in node.js, some things do not need / generally do not use semicolons? For example this code runs just fine with no semicolons =>
var server = app.listen(3000, function() {
var host = server.address().address
var port = server.address().port
console.log("App is listening on port 3000...")
})