Hughes Systique Interview Question

1. Write code to check wether string is palindrome

Interview Answer

Anonymous

May 17, 2019

function palindrome(str){ var len = str.length; var mid = Math.floor(len/2); for(var i=0; i

1