6 lines
91 B
JavaScript
6 lines
91 B
JavaScript
#!/bin/js
|
|
|
|
window.helloworld = function(){
|
|
alert("hello world")
|
|
return "hello world"
|
|
}
|