Larrys Fiddle
by Leonardo Trimarchi
HTML
<title>Function Calls</title>
JavaScript
//function calls
someDumbName();
document.write("<br/>");
displayPlayerScore(14000);
document.write("<br/>");
var sum = addTheseNumbers(12, 59);
document.write("<br/>");
document.write(sum);
function someDumbName() {
document.write("Hey there, dude!");
}
function displayPlayerScore(theScore) {
//playerScore = 1000;
theScore += 1000;
// theScore + 1000;
document.write("<br/>Player score: " + theScore);
}
function addTheseNumbers(x, y) {
//document.write(x+y);
return (x / y);
}