Skip to content

Instantly share code, notes, and snippets.

@buymed-hoangpham
Created September 11, 2022 08:48
Show Gist options
  • Save buymed-hoangpham/02b45f0661940d8be9c2d9a2a6bf8e3d to your computer and use it in GitHub Desktop.
Save buymed-hoangpham/02b45f0661940d8be9c2d9a2a6bf8e3d to your computer and use it in GitHub Desktop.
ex1
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