Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Created September 13, 2018 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rpf5573/a8089d13bc007c098e7a5ffaac4a9811 to your computer and use it in GitHub Desktop.
Save rpf5573/a8089d13bc007c098e7a5ffaac4a9811 to your computer and use it in GitHub Desktop.
console.log('start');
const fs = require('fs');
var data = '';
fs.readFile('test.txt', (err, result) => {
if (err) {
throw err;
} else {
console.log('complete now')
data = result;
}
});
console.log('end');
# output
# ----------
# start
# end
# complete now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment