Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 12, 2023 17:14
Show Gist options
  • Save suhailgupta03/0f8e664b8c03571a3c907473e9f51a07 to your computer and use it in GitHub Desktop.
Save suhailgupta03/0f8e664b8c03571a3c907473e9f51a07 to your computer and use it in GitHub Desktop.
var firstName = "foo";
var lastName = "bar";
var fullName = firstName + " " + lastName;
console.log(fullName);
var _fullName = `${firstName} ${lastName}`; // concatenate strings
console.log(_fullName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment