Put the fragments of code in the correct order.
Write to file
Sorting
Report a typo
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!);
}); ___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.