Skip to content

Instantly share code, notes, and snippets.

@ferditarakci
Created October 7, 2022 21:13
Show Gist options
  • Save ferditarakci/57b7bbd4dc99b17c09926de2b9a7a29e to your computer and use it in GitHub Desktop.
Save ferditarakci/57b7bbd4dc99b17c09926de2b9a7a29e to your computer and use it in GitHub Desktop.
const sayHello = name => `Merhaba ${name}`;
sayHello("Ferdi");
// output: Merhaba Ferdi
sayHello("Meryem");
// output: Merhaba Meryem
// ---------------------------
const sum = a => 10 + a;
sum(10);
// output: 20
sum(20);
// output: 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment