Skip to content

Instantly share code, notes, and snippets.

@dcortesnet
Last active February 14, 2023 12:57
Show Gist options
  • Save dcortesnet/35a8389186631ec5228ab1853e6d8484 to your computer and use it in GitHub Desktop.
Save dcortesnet/35a8389186631ec5228ab1853e6d8484 to your computer and use it in GitHub Desktop.
Nodejs escritura de archivo síncrono txt
const fs = require("fs");
const arr = ["JBKR23", "TN9728"];
fs.writeFileSync("./text_copy.txt", arr.join("\n"));
//JBKR23
//TN9728
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment