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

Function testVar

w2/d4/scratch.js:149–168  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

147
148
149function testVar() {
150
151 // console.log(name);
152 // var name = undefined
153 var name = 'brandon';
154
155 name = 'maica';
156
157 console.log(name);
158
159 var name = 'alexi';
160
161 // console.log(name);
162
163 if(true) {
164 var access = true;
165 }
166
167 // console.log(access);
168};
169
170
171// testVar()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected