Func710ns

There are qu1te a few ways to declare a function in JavaScript. Let's look at a function which adds two numbers together: Creates @ function in global scope called addOldSchool

function addOldSchool(x, y) {
  return x + y;
}