Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
JavaScript
 console.log; if ("Jon".length * 2 / (2+1) === 24 ) ;
{
    console.log("The answer makes sense!");
} else { //Missing operand here I don't know why
	console.log("Error Error Error");
}


Please be nice. I'm very new to Javascript and working on it on codecademy, so don't expect me to be a whiz.
Posted
Updated 21-Dec-12 11:20am
v2
Comments
DinoRondelly 21-Dec-12 16:55pm    
Are you asking a question? Are you getting an error? You dont need the semi colon
if ("Jon".length * 2 / (2+1) === 24 ) ; <- that will cause an syntax error
Jacob Toivonen 21-Dec-12 17:02pm    
On codecademy.com they have a thing thats called litium or something. It puts a red X near the line you did wrong and tells you what you did wrong. It says 'Missing Operand, "else" found'. But I got it figured out now :) i've been struggling on that one for a while.
André Kraak 21-Dec-12 17:23pm    
You gave the right answer, you should post it as the solution.
DinoRondelly 21-Dec-12 17:30pm    
thanks i did
Jacob Toivonen 21-Dec-12 17:20pm    
And I didn't mean to set it at binary my bad

1 solution

if ("Jon".length * 2 / (2+1) === 24 ) ; <- that will cause an syntax error
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900