MCPcopy Create free account
hub / github.com/appacademy/Module-1-Resources / test

Function test

w3/d1/debugger.js:86–105  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

84// * Debugger will skip if statements; if they are falsely; then we never enter the conditional
85
86function test() {
87 let name = "brandon";
88 debugger;
89
90 if (false) {
91 name = "false";
92 debugger;
93 }
94 if (true) {
95 name = "krandon";
96 debugger;
97 }
98
99 if (1) {
100 let name = "1";
101 debugger;
102 }
103
104 debugger;
105}
106
107// test();
108

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected