Skip to content

Instantly share code, notes, and snippets.

@yamankatby
Created October 1, 2019 09:55
Show Gist options
  • Save yamankatby/2f8f76303e0c593235e2bf57cd60c249 to your computer and use it in GitHub Desktop.
Save yamankatby/2f8f76303e0c593235e2bf57cd60c249 to your computer and use it in GitHub Desktop.
const sayHello = (name, surname) => 'Merhaba ' + name + ' '+ surname + '!'; // 💩 Karmaşık
const sayHello = (name, surname) => `Merhaba ${name} ${surname}!`; // 🎉 Daha kolay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment