79244896

Date: 2024-12-02 16:51:58
Score: 2
Natty:
Report link

const names = ['bob', 'marry', 'alice', 'jenifer']; const capitalized = names.map((name) => { return( name[0].charAt(0).toUpperCase() + name.slice(1) + ' ' ) }); console.log(capitalized)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: M K Saifullah Mollick