(word)
| 51 | |
| 52 | // ! Comment out console.log or step into will step into console.log |
| 53 | function foo(word) { // define function foo that accepts param word |
| 54 | debugger; // trigger debugger, jumps to next function call |
| 55 | console.log(word); // console.log the value stored in word param |
| 56 | bar("barber"); // invoke bar function with string "barber" |
| 57 | } |
| 58 | |
| 59 | function bar(word) { // define function bar that accepts param word |
| 60 | debugger; // trigger debugger |