view buy.js @ 79:343dc947f999 laserkard

read JavaSctipt: the good parts
author Robert McIntyre <rlm@mit.edu>
date Sun, 25 Jul 2010 01:33:22 -0400
parents
children
line wrap: on
line source
1 function hello(who) {
2 alert('Hello '+who); // outputs "Hello world"
3 }
5 hello('world');