Tell us what’s happening:
I feel like I am correct. What is going on here?
Your code so far
// Setup
var a;
var b = 2;
// Only change code below this line
a = 7
b = a
Your browser information:
User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/storing-values-with-the-assignment-operator/
ILM
May 6, 2019, 6:05pm
2
You are correct - try reloading the page
Gave that a shot, even closed the browser and tried again. Still nothing. I went back to curriculum and passed it that way. I am just hoping nothing’s wrong with my browser or Ubuntu install.
ILM
May 6, 2019, 6:13pm
4
Do you get a result from the tests or there is a running tests
that doesn’t disappear?
// running tests
a should be assigned to b with =
// tests completed
This is what it gives me. So I get a result.
ILM
May 6, 2019, 6:22pm
7
Didn’t see it before… you are missing the semicolons at the end of each line
1 Like
oh.
I am dying, lmao. Thank you.
1 Like