0 / 60 seg.

¿Qué valor se obtiene al ejecutar el siguiente código?

function esPalindromo(str) {
  if (str.length <= 1) return true;
  if (str[0] !== str[str.length - 1]) return false;
  return esPalindromo(str.slice(1, str.length - 1));
}
console.log(esPalindromo("radar"));