摘要: ###一、箭头函数 //1.定义函数的方式:function function test1(){ console.log('1111') } const test2 = function (){ console.log('222') } test1(); test2(); //2.对象字面量中定义函 阅读全文
posted @ 2021-10-22 16:42 a龙 阅读(32) 评论(0) 推荐(0) 编辑