标签:fun turn height ase split 大小写 item 解析 code
题目:将大写转换为小写,将小写转换为大写;如:“AbC”??“aBc”。
解析:
function processString (s) { var arr = s.split(‘‘); var new_arr = arr.map((item) => { return item === item.toUpperCase() ? item.toLowerCase() : item.toUpperCase(); }); return new_arr.join(‘‘); } console.log(processString(‘AbC‘));
标签:fun turn height ase split 大小写 item 解析 code
原文地址:https://www.cnblogs.com/anbozhu7/p/11276018.html