2020年2月6日

es6----set map应用场景

摘要: 1.数组去重 2.字符串去重 属性: Set.prototype.size:返回Set实例的成员总数。 Set 实例的方法分为两大类:操作方法(用于操作数据)和遍历方法(用于遍历成员)。下面先介绍四个操作方法。 add(value):添加某个值,返回 Set 结构本身。 delete(value): 阅读全文

posted @ 2020-02-06 17:49 漫思 阅读(2068) 评论(0) 推荐(0) 编辑

ES6新特性一览

摘要: ES全称ECMAScript,ECMAScript是ECMA制定的标准化脚本语言。目前JavaScript使用的ECMAScript版本为ECMA-417。关于ECMA的最新资讯可以浏览 ECMA news查看。 ECMA规范最终由TC39敲定。TC39由包括浏览器厂商在内的各方组成,他们开会推动J 阅读全文

posted @ 2020-02-06 17:33 漫思 阅读(1428) 评论(0) 推荐(1) 编辑

es6继承

摘要: class Parent { constructor(x,y){ this.x = x; this.y = y; } toString(){ } } class Child extends Parent{ constructor(x,y,color){ super(x,y); this.color 阅读全文

posted @ 2020-02-06 17:24 漫思 阅读(187) 评论(0) 推荐(0) 编辑

es6中class类的全方面理解(一)

摘要: ES6 中的Class javascript 阅读约 4 分钟 基本用法 ES5 的写法 function Point(x, y) { this.x = x; this.y = y; } Point.prototype.toString = function () { return '(' + th 阅读全文

posted @ 2020-02-06 17:22 漫思 阅读(484) 评论(0) 推荐(0) 编辑

导航