Skip to content

Instantly share code, notes, and snippets.

@jaspervalero
Created March 25, 2015 04:28
Show Gist options
  • Save jaspervalero/71995c8e7b6666e7d448 to your computer and use it in GitHub Desktop.
Save jaspervalero/71995c8e7b6666e7d448 to your computer and use it in GitHub Desktop.
String Concatenation In ES5
function greetUser( prefix, firstName, lastName ) {
var greeting = 'Hello ' + prefix + ' ' + firstName + ' ' + lastName + '!';
return greeting;
}
console.log( greetUser( 'Mr.', 'Tony', 'Stark' ) ); // Hello Mr. Tony Stark!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment