I passed this challenge, however, it mentioned the following:
"Variables which are declared without the let
or const
keywords are automatically created in the global
scope. This can create unintended consequences elsewhere in your code or when running a function again. You should always declare your variables with let
or const
.
It then goes on to to ask this as part of the challenge:
Inside function fun1
, assign 5
to oopsGlobal
without using the var
, let
or const
keywords.
My question is why are you saying to always declare a variable using let or const but then asking me to declare a variable without using let or const? Am I missing something or did you just want me to know that I could but I that I shouldn’t?
Thanks
// Declare the myGlobal variable below this line
function fun1() {
// Assign 5 to oopsGlobal Here
}
// Only change code above this line
function fun2() {
var output = "";
if (typeof myGlobal != "undefined") {
output += "myGlobal: " + myGlobal;
}
if (typeof oopsGlobal != "undefined") {
output += " oopsGlobal: " + oopsGlobal;
}
console.log(output);
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Global Scope and Functions
Link to the challenge: