User Story
Create a program that check if your name is palindrome or not.
Expected Outcome
anna is palindrome
Code
String name ='anna';
if(name == name.reverse()){
System.debug(name +' is palindrome');
}
else{
System.debug(name +' is not palindrome');
}
Video
Video does not exists.