Created
May 15, 2023 15:51
-
-
Save suhailgupta03/760008e68c28d793259b28a2544fa7b4 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
function greet(message, nameOfThePerson) { | |
var greetMessage = `Hello, ${nameOfThePerson}! ${message}`; | |
console.log(greetMessage); | |
} | |
greet("Good evening", "Mahima"); | |
greet("Good morning", "Adity"); | |
greet("Arjun", "Good evening"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment