摘要: 一、使用的环境 (1)return只能在函数里面使用 (2)break、continue 在循环(for、while、do.....while)中使用 ,不能在forEach中使用。 const arr = [1, 2, 3, 4, 5]; for(let i of arr){ if(i == 2) 阅读全文
posted @ 2021-02-21 11:01 拉布拉多~ 阅读(253) 评论(0) 推荐(0) 编辑