Created
May 12, 2020 21:52
-
-
Save ramazankanbur/c9cfd07a0632f501b4d0a9d886dbd67f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| //ES5 | |
| var user = { name: 'Ali' }; | |
| var product = { brand: 'apple', unitprice: 100 }; | |
| var message = | |
| 'Hoş geldin ' + | |
| user.name + | |
| ',\n' + | |
| product.brand + | |
| ' markalı ürünümüzün fiyatı' + | |
| product.unitprice + | |
| "TL'dir"; | |
| console.log(message); | |
| //output | |
| // Hoş geldiniz Ali | |
| // apple markalı ürünümüzün fiyatı 100 TL'dir | |
| //ES6 | |
| var user = { name: 'Ali' }; | |
| var product = { brand: 'apple', unitprice: 100 }; | |
| var message = `Hoş geldin ${user.name} | |
| ${product.brand} markalı ürünümüzün fiyatı ${product.unitprice} TL'dir`; | |
| console.log(message); | |
| //output | |
| // Hoş geldiniz Ali | |
| // apple markalı ürünümüzün fiyatı 100 TL'dir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment