Posts by Charles Fonseca • 15 points
2 posts
-
1
votes1
answer322
viewsQ: How to write in json without overwriting?
How can I write to a file, for example test.json, concatenating with what’s in it (without overwriting)? I’m doing it this way, however, it’s overwriting. const fs = require('fs'); const file =…
-
0
votes2
answers324
viewsQ: How to access parameters received from a class in an external javascript function?
How can I access parameters received from a class outside its scope, as in the function below. Or is there another better way to do this? helper.js class Helper { constructor(user) { this.user =…