That would not work as function is a token keyword in js so you can not name your function function as it would be taking the name of something in js. The correct form would be:
function myFunction(x){
//You Need to put something here, I.e
return x+8;
}
Now it would return x+ 8 , you can make return return nearly anytung.
You also wouldnt see anything on screen, as it would execute the function in the background. It would return something when not expecting a return because executed from a button.