8 lines
106 B
JavaScript
8 lines
106 B
JavaScript
|
|
||
|
function greetWorld() {
|
||
|
alert("hello world")
|
||
|
}
|
||
|
|
||
|
function salute(name) {
|
||
|
alert("hello: " + name)
|
||
|
}
|