Skip to content

Instantly share code, notes, and snippets.

@onelharrison
Created January 27, 2018 15:39
Show Gist options
  • Save onelharrison/28dd64f41b5bf965f261517870c8206c to your computer and use it in GitHub Desktop.
Save onelharrison/28dd64f41b5bf965f261517870c8206c to your computer and use it in GitHub Desktop.
Code snippet showing undefined being passed to the moment function.
function getDateString() {
let dateString;
// ...
// processing that sometimes resulted
// in dateString evaluating to undefined
return dateString;
}
const dateString = getDateString();
moment(dateString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment