tasksujals
Version:
motivational quotes by sujal suthar
13 lines (12 loc) • 596 B
JavaScript
const quotes = [
"The only way to do great work is to love what you do. - Steve Jobs",
"Success is not the key to happiness. Happiness is the key to success. - Albert Schweitzer",
"Believe you can and you're halfway there. - Theodore Roosevelt",
"Your time is limited, so don't waste it living someone else's life. - Steve Jobs",
"The best way to predict the future is to invent it. - Alan Kay"
];
function getRandomQuote() {
const randomIndex = Math.floor(Math.random() * quotes.length);
return quotes[randomIndex];
}
module.exports = { getRandomQuote };