Skip to content

Instantly share code, notes, and snippets.

@code-reaper08
Created August 10, 2021 18:08
Show Gist options
  • Save code-reaper08/4ecb3b1b6bb310c7ec26bf1628cc6ed4 to your computer and use it in GitHub Desktop.
Save code-reaper08/4ecb3b1b6bb310c7ec26bf1628cc6ed4 to your computer and use it in GitHub Desktop.
Callback functions
function Readfile(filename, sizefinder) {
console.log('Reading file.....');
sizefinder();
}
function sizefinder() {
console.log('File size is 32mb');
}
Readfile('sampletxt', sizefinder);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment