-
-
Save ziaulhoque24/e8cc7543238e2306e00e180b3c1d1a64 to your computer and use it in GitHub Desktop.
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 Name = "Akash Ahmed"; | |
const age = 23; | |
const message = [ | |
`Happy birthday ${Name}! I hope you don't feel ${age} years older today.`, | |
`Congratulations on another year of surviving on this planet, ${Name}!`, | |
`Happy birthday to someone who is still a hot mess but looks great while doing it, ${Name}!`, | |
`On your birthday, I wish you peace, love, and lots of ridiculous memes to share with me, ${Name}!`, | |
`I'm so glad you were born, ${Name}, because I wouldn't have anyone to share my cake with today.`, | |
`Another year of existence down the drain! Congrats, ${Name}!` | |
]; | |
console.log(message[Math.floor(Math.random() * message.length)]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment