Skip to content

Instantly share code, notes, and snippets.

@VictorMedeiros
Created August 2, 2016 17:56
Show Gist options
  • Save VictorMedeiros/8fb517ac67f9f7566cb2622923d8c33e to your computer and use it in GitHub Desktop.
Save VictorMedeiros/8fb517ac67f9f7566cb2622923d8c33e to your computer and use it in GitHub Desktop.
var Message = function(text) {
this.text = text;
};
var helloMessage = new Message('Hello World!');
console.log(helloMessage.text); // => 'Hello World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment