Skip to content

Instantly share code, notes, and snippets.

@meeDamian
Created May 17, 2012 22:29
Show Gist options
  • Save meeDamian/2721993 to your computer and use it in GitHub Desktop.
Save meeDamian/2721993 to your computer and use it in GitHub Desktop.
var lightbulb = {
state: false,
turn: function( state ){
if( typeof(state)=="boolean" ) this.state = state;
else if( typeof(state)=="string" ) this.state = (state=="on") ? true : false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment