Discuss / JavaScript / 最后一题

最后一题

Topic source
return arr.map(function(x) {
        return x[0].toUpperCase() + x.substring(1).toLowerCase();
    });

  • 1

Reply