Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ferditarakci/15a7a4edf48fc92dd8b865b11ca1cc09 to your computer and use it in GitHub Desktop.
Save ferditarakci/15a7a4edf48fc92dd8b865b11ca1cc09 to your computer and use it in GitHub Desktop.
// Function Declaration
function sayHello(name) {
return `Merhaba, ${name}!`;
}
sayHello("Ferdi");
// output: Merhaba Ferdi
// ---------------------------
// Function Expression
const sayHello = function(name) {
return `Merhaba, ${name}`;
}
sayHello("Meryem");
// output: Merhaba Meryem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment