Functions



examples/javascript/function.js
function add(x, y) {
  var z = x+y;
  return z;
}

console.log(add(2, 3));