Hello, someone knows what i have to do here?
Set the int variable epicLevel equal to awesomeLevel multiplied by 2.
Hello, someone knows what i have to do here?
Set the int variable epicLevel equal to awesomeLevel multiplied by 2.
Can you show it as code, and not words? Also, you never use “equals” or “multiplied” in Javascript to mean them. You would use ‘=’ or *
I would assume its…
int epicLevel = awsomeLevel * 2;
All its saying is to set the integer variable called epicLevel and assigned it with another variable called awesomeLevel and multiply it by 2
its showing error for this code