Skip to content

Instantly share code, notes, and snippets.

@courtneymyers
Created November 29, 2017 15:33
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 courtneymyers/7d6a92e493291cc3909e4079654bef62 to your computer and use it in GitHub Desktop.
Save courtneymyers/7d6a92e493291cc3909e4079654bef62 to your computer and use it in GitHub Desktop.
JavaScript utility functions
// helper function for initializing default values of an object's key
function init(object, key, fallback) {
(object[key] != null) ? object[key] : object[key] = fallback;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment