Last active
August 13, 2024 01:53
-
-
Save medv/575240027c99141e5f258a4a8fb760d0 to your computer and use it in GitHub Desktop.
random-seinfeld-episode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Seasons = [5, 12, 23, 24, 22, 24, 24, 22, 24] | |
const Season = Math.floor(Math.random() * Seasons.length) | |
const Episode = Math.floor(Math.random() * Seasons[Season]) | |
window.location = `https://www.google.com/search?q=Seinfeld+Season+${Season+1}+Episode+${Episode+1}` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment