Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 13, 2023 15:30
Show Gist options
  • Save suhailgupta03/86d4b37ae04fa9b44920fe2f1668edac to your computer and use it in GitHub Desktop.
Save suhailgupta03/86d4b37ae04fa9b44920fe2f1668edac to your computer and use it in GitHub Desktop.
var firstName = "Aditya Gupta";
var lastName = "Gupta";
var x = firstName + " " + lastName + " is a student with alma better";
console.log(x);
var fullName = `${firstName} ${lastName} is a student with alma better`;
console.log(fullName);
var news = `Karnataka Election Result 2023 LIVE | Shivakumar Says
Cong Will Fulfill All 5 Guarantees
The counting of votes for the Karnataka Assembly elections,
which is expected to be a fierce contest between the
Bharatiya Janata Party (BJP) and Congress with a possibility
of Janata Dal (Secular) playing a key role in the formation of
the new government, has commenced on Saturday.`
console.log(news);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment