Skip to content

Instantly share code, notes, and snippets.

@imcodingideas
Created May 31, 2016 02:51
Show Gist options
  • Save imcodingideas/ee844ffcb5386efd4609bc5578199e26 to your computer and use it in GitHub Desktop.
Save imcodingideas/ee844ffcb5386efd4609bc5578199e26 to your computer and use it in GitHub Desktop.
/**
* 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