Simple Tests
Jump to navigation
Jump to search
A condition is a true/false value. You can use a condition in an if statement or a while statement. For simple datatypes like numbers you can test using operators such as
== Equal != Not Equal > Greater than < Less than >= Greater than or Equal to <= Less than or Equal to
For strings you can use String methods such as
String.equals String.compareTo