Answers for "node.js rerun js"

5

promp node js

const readline = require("readline");

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

rl.question("What is your name ? ", function saveInput(name) {
  console.log(`His name is ${name}`);
  rl.close();
});

rl.on("close", function saveInput() {
    console.log("\nBYE BYE !!!");
    process.exit(0);
});
Posted by: Guest on May-16-2020
1

writefile in node js

fs.writeFile('2pac.txt', 'Some other lyric', 'ascii', callback);
Posted by: Guest on March-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language