//Example to compare two stings
boolean equalsOrNot = "This is Jamie".equals("This is jamie");
boolean equalsOrNot2 = "This is Jamie".equals("Hello World");
System.out.println(equalsOrNot2);//equalsOrNot2 Print out false
When I change it to equalsOrNot it should print true However, this is not the case.
Any Idea what I have done incorrectly?