Created
May 13, 2023 15:30
-
-
Save suhailgupta03/86d4b37ae04fa9b44920fe2f1668edac 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 = "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