Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Statements</h1>
<h2>The return Statement</h2>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = myFunction("John");
function myFunction(name) {
  return "Hello " + name;
}
</script>
</body>
</html>