Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function concatenate(input, input2, input3, input4) {
- let name = input;
- let lastName = input2;
- let age = input3;
- let town = input4;
- console.log(`You are ${name} ${lastName}, a ${age}-years old person from ${town}.
- `);
- }
Advertisement
Add Comment
Please, Sign In to add comment