Jump to content

HELP!

Tony Stark

my coding is not working, please help me fix it

Well, what are you trying to accomplish? EDIT: Guess you want to display peoples zodiac sign.. :-)

 

Anyway, first make sure you JS is working in the first place by doing an alert.

Link to comment
Share on other sites

Link to post
Share on other sites

Found the issue, when comparing STRINGS, you must you equalsIgnoreCase.

 

For example :

 

 

var text = "Hello";

 

if (text.equalsIgnoreCase("Hello")){

    System.out.print("Bye");

}

 

 

 

The product of equals ignore case is a boolean.

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×