we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "checkpalindrome"
Lenny
13 Apr 2018
1function checkPalindrome(inputString) {
2    if (inputString === inputString.split('').reverse().join('')) {
3        return true
4    } else {
5        return false
6    }
7}
8console.log(checkPalindrome('aba')) //output: true
queries leading to this page
checkpalindromecheckpalindrome