You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`// 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());
`
The text was updated successfully, but these errors were encountered:
`// 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());
`
The text was updated successfully, but these errors were encountered: