Created
May 13, 2023 14:48
-
-
Save suhailgupta03/41f21072824014e39787cd71ecd76faa 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
// starts and ends with a single quote | |
var myUserName = 'suhail03'; // albhabets + numbers | |
// starts and ends with a double quote | |
var myFullName = "suhail gupta" | |
// starts and ends with a backtick | |
var myTwitterUserName = `suhailg03`; | |
console.log(myUserName); | |
console.log(myFullName); | |
console.log(myTwitterUserName); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment