Introduction To Programming
/*
Write a description of the application here.
*/
var yourName = "Your Name Here!"
document.write("Hi, ");
document.write(yourName);
document.write("! Nice to see you.");
We just typed a small JavaScript application and ran it. We also started using the course coding standards, maybe without realizing it. Now might be a good time to review the JavaScript Coding Standards for 10-152-310.