Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 370 Bytes

File metadata and controls

16 lines (11 loc) · 370 Bytes

Create a function named combineNames that accepts two parameters (first and last name). The function should return the full name.

Example:

combineNames("James", "Stevens");

returns:

"James Stevens"