Discuss / JavaScript / test
return arr.map((x)=> {
  return (x.slice(0, 1).toUpperCase()) + (x.slice(1, arr.length + 1).toLowerCase());
})
=================

r = arr.map((item)=>{
  return parseInt(item)
});

  • 1

Reply