Skip to content

Instantly share code, notes, and snippets.

@tpowell
Created October 30, 2012 01:04
Show Gist options
  • Save tpowell/3977703 to your computer and use it in GitHub Desktop.
Save tpowell/3977703 to your computer and use it in GitHub Desktop.
Quiz 2 - Ex 1
var myName, myAge, likeDogs;
myName = "Joe P. Somolovich";
myAge = 31;
likeDogs = true;
document.write("Hi my name is " + myName);
document.write(" and I am " + myAge + " years old.");
if (likeDogs)
document.write("I like dogs.");
else
document.write("I don't like dogs.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment