watwatwat

Untitled

Oct 17th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var weeks = 10;
  2. var hours = 40;
  3. var year = 2017;
  4. var cohort = "WDFT";
  5.  
  6. function printOutput(a, b, c, d) {
  7.     console.log('This is ' + d + ', ' + c);
  8.     console.log('It is a ' + a * b + ' hour program.');
  9. }
  10.  
  11. printOutput(weeks, hours, year, cohort);
Add Comment
Please, Sign In to add comment