(word)
| 57 | } |
| 58 | |
| 59 | function bar(word) { // define function bar that accepts param word |
| 60 | debugger; // trigger debugger |
| 61 | console.log(word); // console.log the value stored in word param |
| 62 | baz("bazaar"); // invoke baz function with string "bazaar" |
| 63 | } |
| 64 | // ! leave out debugger to show that step into will |
| 65 | // step into the function and go line by line |
| 66 | // step over will step over the function |