Skip to content

Instantly share code, notes, and snippets.

@Gulshanidrees
Created June 28, 2025 05:55
Show Gist options
  • Save Gulshanidrees/5e0eb8c8ef264213faef41ad6b68ce67 to your computer and use it in GitHub Desktop.
Save Gulshanidrees/5e0eb8c8ef264213faef41ad6b68ce67 to your computer and use it in GitHub Desktop.
create a function
function createGreeting(name, greeting = "Hello") {
return `${greeting}, ${name}!`;
}
console.log(createGreeting("World"));
console.log(createGreeting("User", "Good day"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment