回呼函式 (Callback Function)

const http = require('http');
const server = http.createServer((req, res) => {
    res.writeHead(200, {
        'Content-Type': 'text/html'
    });
    res.end(`<h2>hola 123</h2>
<p>${req.url}</p>
`);
});
server.listen(3000);

為什麼叫做callback function,就是不是主動去呼叫他,而是定義函數的內容與啟動條件,當條件處發時,就會啟動這個函數。

以上例程式碼來說,就是當用戶拜訪網站時,就會呼叫函數。