Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. exports.handler = (event, context, callback) => {
  2. const quotes = [{
  3. author: "Oscar Wilde",
  4. quote: "Be yourself; everyone else is already taken."
  5. }, {
  6. author: "Mahatma Gandhi",
  7. quote: "Be the change that you wish to see in the world."
  8. }, {
  9. author: "Friedrich Nietzsche",
  10. quote: "Without music, life would be a mistake"
  11. }];
  12.  
  13. const randomQuote = quotes[Math.floor(Math.random() * quotes.length)];
  14.  
  15. callback(null, randomQuote);
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement