Functions
Functions group reusable logic behind a name you can call anywhere.
function createServer() {
return http.createServer((req, res) => {
res.end('OK');
});
}Try it Yourself
Node.js Tutorial
Functions group reusable logic behind a name you can call anywhere.
function createServer() {
return http.createServer((req, res) => {
res.end('OK');
});
}