Skip to content

Instantly share code, notes, and snippets.

@cschuff
Last active February 24, 2017 16:22
Show Gist options
  • Save cschuff/2d33fd83bcb23be408832a03f5c3e99e to your computer and use it in GitHub Desktop.
Save cschuff/2d33fd83bcb23be408832a03f5c3e99e to your computer and use it in GitHub Desktop.
Assignment Shortcuts
// boolean defaulting to true
bValue = (bValue !== false);
bValue = bValue === undefined ? this.getValue() : bValue;
sValue = sValue || "default";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment