1、字符串中大小写取反
const str = 'aBc' const newStr = [].map.call(str, item =>{ return /[a-z]/.test(item) ? item.toUpperCase() : item.toLowerCase() }).join('')