Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAmirah Rashid
2,831 PointsNot sure what I'm missing here.
I keep getting a bummer message asking me if I'm using the 'equals' method for 'firstExample' and calling 'console.printf' which I am doing both. Not sure what I'm missing. I also tried using .equalsIgnoreCase from the video and got the same message.
// I have imported a java.io.Console for you, it is named console.
String firstExample = "hello";
String secondExample = "hello";
String thirdExample = "HELLO";
if (firstExample.equals("secondExample")) {console.printf("first is equal to second");}
1 Answer
ygh5254e69hy5h545uj56592yh5j94595682hy95
7,934 Points// When you used "secondExample" it treated it as a string so it tried to compare it to firstExample
// "hello" == "secondExample" which is not true
// removing the " " fixes the issue because it refers to the secondExample value which is "hello"
// thus making it, "hello" == "hello"
if (firstExample.equals(secondExample)) {
console.printf("first is equal to second");
}
Amirah Rashid
2,831 PointsAmirah Rashid
2,831 Pointsoh I see, thank you!