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
/** | |
* Created by joseph on 5/30/16. | |
*/ | |
alert( "Thanks for your input!" ); |
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
/** | |
* 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); |
NewerOlder