Created
May 12, 2023 17:14
-
-
Save suhailgupta03/0f8e664b8c03571a3c907473e9f51a07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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