hello everyone
Iām just stuck in this question
Blockquote
Change the line that calculates x so the box is 200px wide, but the 200 is calculated using the number 4 and an assignment operator.
Blockquote
any hint will be appreciate
hello everyone
Iām just stuck in this question
Blockquote
Change the line that calculates x so the box is 200px wide, but the 200 is calculated using the number 4 and an assignment operator.
Blockquote
any hint will be appreciate
Hello @ali_ibrahimi
Two things are important for question 5:
x += 5
means x = x + 5
. If x
was initially ā10ā then after x += 5
the value of x
would be ā15ā.Tell me if you need more help.
Cheers,
Michael
Hello, @mikoMK thanks for your help. I think I got it. Sorry that Iām responding too late, so I solve it by using x *= 4
which is the same as 4 * 50. Can you correct me please if I was wrong?
This is exactly the solution we were looking for. Good job!
Thank you so much for your assistance.*. @mikoMK