Skip to content

Instantly share code, notes, and snippets.

@yamankatby
Created October 1, 2019 08:44
Show Gist options
  • Save yamankatby/7544188a0f6c04252d4f741735289020 to your computer and use it in GitHub Desktop.
Save yamankatby/7544188a0f6c04252d4f741735289020 to your computer and use it in GitHub Desktop.
const sayHello = (name = "Yeni Kullanıcı") => {
return "Merhaba " + name + "!";
};
sayHello(); // Merhaba Yeni Kullanıcı!
sayHello("Yaman KATBY"); // Merhaba Yaman KATBY!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment