30DaysOfJavaScript icon indicating copy to clipboard operation
30DaysOfJavaScript copied to clipboard

Random Quote Generator using JS

Open Yashpreeth opened this issue 1 year ago • 1 comments

`// Array of quotes const quotes = [ "The only way to do great work is to love what you do. Steve Jobs", "Innovation distinguishes between a leader and a follower. Steve Jobs", "Stay hungry; stay foolish. Steve Jobs", "Life is what happens when you're busy making other plans. John Lennon", "You miss 100% of the shots you don't take. Wayne Gretzky", "The only limit to our realization of tomorrow will be our doubts of today. Franklin D. Roosevelt" ];

function to generate random quote function generateRandomQuote() { const randomIndex = Math.floor(Math.random() * quotes.length); return quotes[randomIndex]; }

Example usage console.log(generateRandomQuote()); `

Yashpreeth avatar May 10 '24 19:05 Yashpreeth

Thank you for opening your first issue in our repository! One of our maintainers will get in touch with you soon.

github-actions[bot] avatar May 10 '24 19:05 github-actions[bot]

Thank you for providing your insight but it is not required as of now.

swapnilsparsh avatar May 11 '24 19:05 swapnilsparsh