palindrome

String.prototype.palindrome = function (type){
  const _arr = this.split('')
  if (type === 'odd') {
    return this + _arr.reverse().slice(1, _arr.length).join('')
  }
  return this + _arr.reverse().join('')
}

你可能感兴趣的:(palindrome)