Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 521 Bytes

Waht_Should_I_Do_for_Lunch_Tips.md

File metadata and controls

14 lines (10 loc) · 521 Bytes

Tips

Try experimenting with the comparison operators (<, >, ===, etc.) in the node REPL, which you can launch using the node command in Vagrant.

Work on your code iteratively – that means in small pieces.

To help you figure out how to use hungry and availableTime inside your function, try outputting their values to the Terminal as follows.

function whatToDoForLunch(hungry, availableTime) {
  console.log("hungry is", hungry);
  console.log("availableTime is", availableTime);
}