Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 15, 2023 15:51
Show Gist options
  • Save suhailgupta03/760008e68c28d793259b28a2544fa7b4 to your computer and use it in GitHub Desktop.
Save suhailgupta03/760008e68c28d793259b28a2544fa7b4 to your computer and use it in GitHub Desktop.
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