Skip to content

Instantly share code, notes, and snippets.

@robertcoopercode
Created November 13, 2017 02:51
Show Gist options
  • Save robertcoopercode/73e8d04ada678f18691f77f19886c659 to your computer and use it in GitHub Desktop.
Save robertcoopercode/73e8d04ada678f18691f77f19886c659 to your computer and use it in GitHub Desktop.
// Constructor function that creates an object with the sentences property
function GenerateNewText() {
// Add property to the object
this.sentences =
[
"Awesome quote number 1.",
"Second awesome quote.",
"Yet another great quote.",
"Ok, last quote."
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment