Callback — function. Promise — object.
1// Callback2readFile((err, data) => {});3 4// Promise5const p = new Promise((resolve) => {});