摘要: if判断 第一种: 第一种:if(条件){代码} 结果会执行真代码 第二种: let x = 40 if(x >50){ }else if( x>30){ }else if( x>20 ){ }else{ "以上条件都不满足" } 第三种: if(){ }else if(){ }else if(){ 阅读全文
posted @ 2021-01-02 23:57 小衣 阅读(296) 评论(0) 推荐(0)