Sorting

Report a typo

Put the fragments of code in the correct order.

Put the items in the correct order
const data = 'What's up, guys?';
fs.writeFile('awesome-text.txt', data, (err) => {
const fs = require('node:fs');
if (err) {
throw new Error('Error occurred');
}
console.log('Written file successfully, yay!);
});
___

Create a free account to access the full topic