Home
ActionScript
Blog

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

Chapter 6

 

 

 

 

 

 

 

 

 

 

 

 

 

 

<script>
//concatenation
//ask for user name
//Catherine Casuat 9/18
var userName;
var greeting;
userName = prompt("what is your name?");
greeting = "Hi, " + userName + "!!";
alert(greeting);
</script>