Edit in JSFiddle

var monkey = "Gorilla";

function greetVisitor(){
  return alert("Hello dear blog reader!");
}

alert(monkey);
greetVisitor();