Last active
February 24, 2017 16:22
-
-
Save cschuff/2d33fd83bcb23be408832a03f5c3e99e to your computer and use it in GitHub Desktop.
Assignment Shortcuts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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