anil_main_task
Version:
this is motivational quotes created by anil patel
20 lines (17 loc) • 847 B
JavaScript
const quotes = [
"Believe you can and you're halfway there. – Theodore Roosevelt",
"Don’t watch the clock; do what it does. Keep going. – Sam Levenson",
"Push yourself, because no one else is going to do it for you.",
"Success is not final, failure is not fatal: it is the courage to continue that counts. – Winston Churchill",
"The harder you work for something, the greater you’ll feel when you achieve it.",
"Dream bigger. Do bigger.",
"Don’t stop when you’re tired. Stop when you’re done.",
"Great things never come from comfort zones.",
"Stay positive, work hard, make it happen.",
"Your limitation—it’s only your imagination."
];
function getRandomQuote() {
const index = Math.floor(Math.random() * quotes.length);
return quotes[index];
}
module.exports = { getRandomQuote };