本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
最新文章列表
ES6中this和箭头方法
之前写多页面应用时,一个页面就是全部,this常常默认是全局对象,但this的正确理解不限于此,特别是大型复杂结构的脚本。例如:
export class ThisScope {
txt:string = "hello this scope"
cf1 () {
return function() {
this. ...
array的reduce
ES5 (js 1.8)加入了 reduce
接收一个函数,然后从左到右遍历item,直到reduce到一个值。
arr.reduce(callback, [initialValue]);
参数:
callback(previousValue, currentValue, index, array)
previousValue ...
ES5之Object.seal
Object.seal
来自ES5
可以封闭指定的对象:只能修改对应的属性值,但是不能删除和添加等操作
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal
7月30日的广州演讲视频和Slides
7月30日在W3CTech广州站活动上的演讲,题目是:ECMAScript 5 —— Improve the Safety of JavaScript 。主要内容是对ECMAScript 5的Strict模式的几个实例介绍,以及其他几个关于代码安全性的例子。
视频:http://v.youku.com/v_playlist/f6520341o1p10.html
Slides:http://hax. ...