Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created October 25, 2009 00:41
Show Gist options
  • Save ELLIOTTCABLE/217824 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/217824 to your computer and use it in GitHub Desktop.
Which of these four do you prefer?
if(typeof node['description'] === 'undefined') {
node['description'] = teddy['description']; };
if(typeof node['description'] === 'undefined') {
node['description'] = teddy['description'] };
if(typeof node['description'] === 'undefined') {
node['description'] = teddy['description']; }
if(typeof node['description'] === 'undefined') {
node['description'] = teddy['description'];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment