摘要: const transformString = (s) => { const res = s.charAt(0).toLowerCase().concat(s.slice(1)).replace(/\s+/g, ''); return res; }; 阅读全文
posted @ 2020-08-13 15:42 燕子fly 阅读(249) 评论(0) 推荐(0) 编辑