HackYourFuture / Assignments

This repository contains all of the homework exercises that need to be handed in for the HackYourFuture curriculum.
Other
9 stars 95 forks source link

Updated for class 35 #60

Closed remarcmij closed 2 years ago

remarcmij commented 2 years ago

Summary of updates and improvements:

function giveCompliment(/* TODO parameter(s) go here */) {
  // TODO complete this function
}

function main() {
  // TODO substitute your own name for "HackYourFuture"
  const myName = 'HackYourFuture';

  console.log(giveCompliment(myName));
  ...
}

// ! Do not change or remove the code below
if (process.env.NODE_ENV !== 'test') {
  main();
}
module.exports = giveCompliment;