fixed the code style error

This commit is contained in:
Syed Fasiuddin
2021-10-16 15:53:24 +05:30
parent 04fbf92480
commit 3131b9a989

View File

@ -49,7 +49,7 @@ const alphaNumericPlaindrome = (str) => {
} }
// if the string is palindrome then palin variable is never changed // if the string is palindrome then palin variable is never changed
if (palin == 0) return true if (palin === 0) return true
else return false else return false
} }