Career
Hiring
Social
Products
One Time All
Daily Grocery
Select, Copy & Search
Google Analytics Checker
Robots.txt File Checker
sitemap.xml File Checker
Website Crawling Checker
Editors
Python Compiler
HTML Code Editor
JS Code Editor
Docker
Github
Python
How to
Graphql
Css
HTML
Django
main.js
Run
Online JavaScript Editor
Clear
// Array of quotes const quotes = [ "The only way to do great work is to love what you do. – Steve Jobs", "Your time is limited, don't waste it living someone else's life. – Steve Jobs", "Stay hungry, stay foolish. – Steve Jobs", "The future belongs to those who believe in the beauty of their dreams. – Eleanor Roosevelt", "Everything you’ve ever wanted is on the other side of fear. – George Addair" ]; // Function to generate a random quote function generateRandomQuote() { const randomIndex = Math.floor(Math.random() * quotes.length); return quotes[randomIndex]; } // Display a random quote console.log(generateRandomQuote());