Imagine that you are trying to locate some logic errors in a…

Imagine that you are trying to locate some logic errors in a JavaScript program using your browser console’s debugging tools. You can use the “_____” button to trace a function step by step, or the “_____” button to run a function without evaluating it in detail.

The following JavaScript code correctly nests conditional st…

The following JavaScript code correctly nests conditional statements without syntax errors. if (isBirthday === true) {    if (age === 20) {       window.alert(“You have been alive for exactly two decades.”);    else if (age === 30) {       window.alert(“You have been alive for exactly three decades.”);    else {       window.alert(“A new year of your life begins today.”); } else {    window.alert(“Today is your un-birthday.”); }