Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 13, 2023 14:48
Show Gist options
  • Save suhailgupta03/41f21072824014e39787cd71ecd76faa to your computer and use it in GitHub Desktop.
Save suhailgupta03/41f21072824014e39787cd71ecd76faa to your computer and use it in GitHub Desktop.
// 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