Guest User

Untitled

a guest
Mar 18th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. exports.getRandomQuote = (req, res) => {
  2.  
  3. var Items = [
  4. {"person":"H. Jackson Brown, Jr.","quote":"Remember that the happiest people are not those getting more, but those giving more."},
  5. {"person":"Mark Twain","quote":"Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do."},
  6. {"person":"Elanor Roosevelt","quote":"Great minds discuss ideas; average minds discuss events; small minds discuss people."}
  7. ];
  8.  
  9. res.send(Items[Math.floor(Math.random()*Items.length)]);
  10.  
  11. };
Add Comment
Please, Sign In to add comment