Node.js Tutorial

Node.js Functions

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