Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 1, 2019 15:58
Show Gist options
  • Save jlittlejohn/6204b26bd8e526aa0172 to your computer and use it in GitHub Desktop.
Save jlittlejohn/6204b26bd8e526aa0172 to your computer and use it in GitHub Desktop.
JS: Check to see if a property exists on a Method
// Check if this.property exists, if so use it, if not create it and add value to the array
var object = {
method: function (value) {
this.property = this.property || [];
this.property.push(value);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment