pg 223 test Fundamentals

by Lucille Kenney

JavaScript

function functionName(someVar, anotherVar) {
 var n = someVar + anotherVar;
  
console.log(n);
    
}

//functionName("20 Cats", 10);

//functionName({num: 7, title: ‘Creating Functions’});