<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Funcion de expresion</title>
</head>
<body>
<input value="Click me" type="button" onClick="alert (myFunction (3,4))">Resultado de multiplicar 3 y 4
<script>
myFunction=function (a, b)
{
return a * b;
}
</script>
</body>
</html>