(word)
| 67 | // if there is a debugger, then it will enter the function regardless of step into/step over |
| 68 | |
| 69 | function baz(word) { // define function baz that accepts param word |
| 70 | console.log(word); // console.log the value stored in word param |
| 71 | // debugger; // trigger debugger |
| 72 | } |
| 73 | |
| 74 | foo("food"); |
| 75 |