como modificar o arquivo json externo javascript
//All Other code has an error
//Here is the correct one
fs = require('fs');
var name = 'fileName.json';
var m = JSON.parse(fs.readFileSync(name).toString());
for(const p in m){
p.name= m.name;
}
fs.writeFileSync(name, JSON.stringify(m));
Unreal Person