//如何把一个字符串的大小写取反(大写变小写小写变大写),例如 ’AbC' 变成 'aBc'
var text = "HELloaaPPpp" ;
console.log("您的字符串:"+text) ;
//封装方法
function change(text){
let textbig = text.toUpperCase() ;
let arr = text.split("") ;
let arrbig = textbig.split("")
var text = "HELloaaPPpp" ;
console.log("您的字符串:"+text) ;
//封装方法
function change(text){
let textbig = text.toUpperCase() ;
let arr = text.split("") ;
let arrbig = textbig.split("")
// 异步
new Promise(function(resolve,reject){
for(let i in arr){