Created
September 11, 2022 08:48
-
-
Save buymed-hoangpham/02b45f0661940d8be9c2d9a2a6bf8e3d to your computer and use it in GitHub Desktop.
ex1
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
| const showProfile = (name, lastname, age, profession, salary) => { | |
| console.log( | |
| `My name is ${name} ${lastname}, i'm ${age} years old. I work as ${profession} and make $${salary}.` | |
| ); | |
| }; | |
| showProfile('Hoang', 'Pham Minh', '18', 'Front-end Developer', '10'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment