no response on stdout hackerrank javascript

Solutions on MaxInterview for no response on stdout hackerrank javascript by the best coders in the world

showing results for - "no response on stdout hackerrank javascript"
Payton
09 Jan 2020
1//for javascript(nodejs)
2//import fs
3const fs = require('fs');
4//stdout
5fs.createWriteStream(process.env.OUTPUT_PATH).write("OUTPUT");
Lisa
21 Oct 2016
1// It will work on Javscript(nodejs), not sure about others
2fs.createWriteStream(process.env.OUTPUT_PATH).write("Your Output");
3