Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyNodeJScallbacks error-firstSingle-choice MCQ

What happens when you run this error-first callback code?

const fs = require('fs'); fs.readFile(__filename, 'utf8', (err) => { if (err) throw err; console.log('done'); console.log(data); });