Skip to content

Instantly share code, notes, and snippets.

@pantaovay
Created December 10, 2013 18:13
Show Gist options
  • Select an option

  • Save pantaovay/7895263 to your computer and use it in GitHub Desktop.

Select an option

Save pantaovay/7895263 to your computer and use it in GitHub Desktop.
// 糟糕
function initVar($myVar) {
if(!$myVar) {
$myVar = $('#selector');
}
}
// 建议
function initVar($myVar) {
$myVar = $myVar || $('#selector');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment