Skip to content

Instantly share code, notes, and snippets.

@asarode
Last active October 15, 2015 15:29
Show Gist options
  • Save asarode/b3526b7ec725397faec5 to your computer and use it in GitHub Desktop.
Save asarode/b3526b7ec725397faec5 to your computer and use it in GitHub Desktop.
// Original
if (url) {
window.location.href = url;
} else {
window.location.href = noApp;
}
// Better
window.location.href = url || noApp;
// Generally
var a = passedInValue || defaultValue;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment