Skip to content

Instantly share code, notes, and snippets.

@gaurang847
Last active June 19, 2019 18:18
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 gaurang847/3d845f4c902adf350d50183955e8f19a to your computer and use it in GitHub Desktop.
Save gaurang847/3d845f4c902adf350d50183955e8f19a to your computer and use it in GitHub Desktop.
function get_value_from_DB(){
//Database related code here.
//At the end of operation, it returns 42 if successful
//and -1 otherwise
}
let value = get_value_from_DB();
console.log(value); //prints 'undefined' as console.log runs before
//get_value_from_DB() could return a value.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment