Task 1: Create a function which performs addition
  function add(a,b){
return a+b;
}
Task 2: Call the function
  let result = add(2,3);
console.log(result);
Task 3: Test the function
  node addition.js