Logo Welcome to my page
Home Javascript Actionscript Blog
Chapter 1 Programs

Concatenating

<body>
<h1>Concatenating</h1>
<script>
//concatenating
//ask user for name
//Gabriela Torres, 9/18
var userName;
var greeting;
userName = prompt("What is your name");
greeting = "Hi" +userName+ "!!";
alert(greeting);
</script>
</body>
 

Contact Me

Mr. Styner's Webpage

Clasmates