随笔分类 -  ES9

ES9新特性
摘要:let str = '<a href="http://www/baidu.com">百度</a>'; // 提取 url 和 文本 const reg = /<a href="(.*)>(.*)<\/a>/; const result = reg.exec(str); console.log(res 阅读全文
posted @ 2020-12-01 15:52 小蓉儿 阅读(83) 评论(0) 推荐(0) 编辑
摘要:Rest 参数与 spread 扩展运算符在ES6中已经引入,不过ES6只针对于数组。 在ES9中为对象提供了像数组一样的 rest 参数和 扩展运算符 1. 输出 function connect({host,port,userName,password}){ console.log(host) 阅读全文
posted @ 2020-11-26 13:52 小蓉儿 阅读(226) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示