+ 1
How do you write a function?
My code - function game() { alert("hello"); };
6 ответов
+ 8
function game() {
alert("hello");}
game();
+ 3
function Message(message){
alert(message);
}
Message("2017");
+ 2
You had already written a function, all ValentinHacker showed you is how to call it.
+ 1
Thank you
+ 1
function hi(){
alert('I am a function');
}
hi();
+ 1
function my fun(){
alert("wrong pattern!");}