Error First Callbacks
Yes thats right!!!
its called error first callback because it takes the error as the first argument in the call back function
let readFileStuff = fs.readFile(fileLoc, 'utf8', (err, data) => {
if (err) {
console.log(err)
} else {
console.log(data)
}
})