Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
Functions can be used in expressions.
<
/p
>
<
p
id
="demo"
>
<
/p
>
<
script
>
function
myFunction(a, b) {
return
a * b;
}
var
x = myFunction(
4
,
3
) *
2
;
document.getElementById(
"demo"
).innerHTML = x;
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>Functions can be used in expressions.</p> <p id="demo"></p> <script> function myFunction(a, b) { return a * b; } var x = myFunction(4, 3) * 2; document.getElementById("demo").innerHTML = x; </script> </body> </html>
Result:
Privacy Policy