Learn

There are more comparison operators that we haven’t covered and they may seem familiar from math class:

Operator Meaning:
< Less than
> Greater than
<= Less than or equal to
>= Greater than or equal to

Like the previous exercise, we’re still using the comparison operators to compare the left hand value against the right hand value. For instance:

100 < 200 // Evaluates to true

We can read this example as, “Is 100 less than 200? Yes, that is true.

Let’s look at one more example with <=:

100.5 <= 100.5 // Evaluates to true

Just like the less than operator (<), we want to check if the left hand value is less than OR equal to the right hand value. Since 100.5 is less than or equal to 100.5, it evaluates as true.

Instructions

1.

In main.go create an if statement that checks if vaultAmt is at least $200,000 (200000) and if it is, print out "We're going to need more bags.".

Take this course for free

Mini Info Outline Icon
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.

Or sign up using:

Already have an account?