Generation

generate functionTue, 15 Nov 2022

read file

Script const fs = require('fs'); fs.readFile('./data.txt', (err, data) => { if (err) throw err; console.log(data); });

Want to kickstart your project?Use the new AI Studio to create your code