Skip to content

Instantly share code, notes, and snippets.

@momenbasel
Last active September 17, 2018 04:00
Show Gist options
  • Save momenbasel/d9a4ce0d4baf74975bb0d8d151b61ae2 to your computer and use it in GitHub Desktop.
Save momenbasel/d9a4ce0d4baf74975bb0d8d151b61ae2 to your computer and use it in GitHub Desktop.
A demo to demonstrate callback hell on js
const fs = require('fs');
fs.readFile('file.js', (err,data) => {
if (err) return console.error(err);
console.log(data.toString());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment