+ 1

What is the result value of the following expression?

var result=20 result=*5

22nd Jan 2018, 10:48 AM
Aeron Creer
2 Answers
+ 4
Maybe you meant: var result = 20; result *= 5; // result = result * 5 // or result = 20 * 5 = 100
22nd Jan 2018, 11:45 AM
Boris Batinkov
Boris Batinkov - avatar
+ 2
you'll get an error.
22nd Jan 2018, 10:57 AM
storm
storm - avatar