// Example input data
const inputData = {
name: "Anup Dumre",
age: 20,
email: "
anupabde17@gmail.com"
};
// Convert input data to JSON string
const jsonData = JSON.stringify(inputData, null, 2);
// Write JSON data to file
fs.writeFile(outputFile, jsonData, (err) => {
if (err) {
console.error('Error writing to file:', err);
} else {
console.log('JSON data has been written to', outputFile);
}
});