quotespushpendra
Version:
generates random motivational quotes by pushpendra
16 lines (13 loc) • 712 B
JavaScript
// Minimal Random Motivational Quotes Generator by Pushpendra Thakkar
const motivationalQuotes = [
"Success is not final, failure is not fatal: it is the courage to continue that counts. - Pushpendra Thakkar",
"The only way to do great work is to love what you do. - Pushpendra Thakkar",
"Believe you can and you're halfway there. - Pushpendra Thakkar",
"Dream big and dare to fail. - Pushpendra Thakkar",
"The difference between ordinary and extraordinary is that little extra. - Pushpendra Thakkar"
];
function getRandomQuote() {
const randomIndex = Math.floor(Math.random() * motivationalQuotes.length);
return motivationalQuotes[randomIndex];
}
module.exports = getRandomQuote;