Basic JavaScript - Compound Assignment With Augmented Multiplication

Tell us what’s happening:
what is the
let a , b and c for i dont understang that part but i undersand the operator tho

Your code so far

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

// Only change code below this line
a *= 5
b *= 3
c *= 10

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Compound Assignment With Augmented Multiplication

Link to the challenge:

let a = 5
This part just assigns a to equal 5. ie from this point on the variable a has a value of 5

1 Like

thank you soooooooooo muchhhhhhhh