Https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-multiplication

Tell us what’s happening:

Hi, The “Run the test” button is not working. I tried reloading the page and nothing happens.

Your code so far


var a = 5;
var b = 12;
var c = 4.6;

// Only modify code below this line

a *= 5;
3 *= 12;
c *= 10;




Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-multiplication

this line prevents the code from running
(any syntax error will prevent the code from running)

1 Like