Created
October 1, 2019 09:55
-
-
Save yamankatby/2f8f76303e0c593235e2bf57cd60c249 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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