摘要:
Default export:Default export is easy way to export a function to outside module.//flash-message.jsexport default function(message){ alert(message);... 阅读全文
posted @ 2016-01-14 20:17
Zhentiw
阅读(519)
评论(0)
推荐(0)
摘要:
In constructor, you can call parent's constuctor() method by supert();class ShoppingCart { constructor(userId){ this.userId = userId; this.prod... 阅读全文
posted @ 2016-01-14 20:02
Zhentiw
阅读(267)
评论(0)
推荐(0)
摘要:
Limitations With ArrayArrays don't enforce uniqueness of items. Diplicate entries are allowed.Using Setslet tags = new Set() ;tags.add('Javascript');t... 阅读全文
posted @ 2016-01-14 04:11
Zhentiw
阅读(269)
评论(0)
推荐(0)
摘要:
WeakMap: is a type of Map where only objects can be passed as keys. Primitive data type -- such are string, numbers, booleans, etc --- are not allowed... 阅读全文
posted @ 2016-01-14 04:07
Zhentiw
阅读(429)
评论(0)
推荐(0)
摘要:
Use Maps when keys are unknown until runtime:Map:let recentPosts = new Map();createPost( newPost, (data)=>{ // Key unknown until runtime, so use Ma... 阅读全文
posted @ 2016-01-14 03:35
Zhentiw
阅读(182)
评论(0)
推荐(0)
摘要:
A common problem when dealing with some kinds of data is that not every object has the same nested structure. lukeskywalker.parents.father.isjedi work... 阅读全文
posted @ 2016-01-14 03:19
Zhentiw
阅读(171)
评论(0)
推荐(0)

浙公网安备 33010602011771号