Created
June 2, 2022 15:20
-
-
Save BennisonDevadoss/15b6396369ab18102326c3973d691de3 to your computer and use it in GitHub Desktop.
This file contains 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
let firstName = "Bennison" | |
let lastName = undefined | |
if(lastName){ | |
console.log(`Hello ${firstName} ${lastName}`); | |
} | |
else{ | |
console.log(`Hello ${firstName}`); // Bennison |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment