随笔分类 -  ES6

摘要:https://www.jianshu.com/p/d5f572dd3776 阅读全文
posted @ 2021-01-22 13:55 ThisCall 阅读(42) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/af78964c33e2 阅读全文
posted @ 2019-11-20 10:27 ThisCall 阅读(176) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ainyi/p/8537027.html(new copy) https://blog.csdn.net/qq_36709020/article/details/80045500(new copy)( (1)交换变量的值 ) [x, y] = [y, 阅读全文
posted @ 2018-03-11 09:18 ThisCall 阅读(216) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/287e0bb867ae 1,let表示变量、const表示常量。let和const都是块级作用域。一个在函数内部,一个在代码块内部; const name = 'lux' name = 'joe' //再次赋值此时会报错 ,2, 不需要funct 阅读全文
posted @ 2018-03-08 20:39 ThisCall 阅读(151) 评论(0) 推荐(0) 编辑