Created
November 13, 2017 02:51
-
-
Save robertcoopercode/73e8d04ada678f18691f77f19886c659 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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