Created
May 31, 2016 02:51
-
-
Save imcodingideas/ee844ffcb5386efd4609bc5578199e26 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
/** | |
* Created by joseph on 5/30/16. | |
*/ | |
//store name in a variable | |
var firstName = "Joseph"; | |
var lastName = "Chambers"; | |
var age = 32; | |
var fullName = firstName + lastName; | |
alert(fullName + "is " + age); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment