码迷,mamicode.com
首页 >  
搜索关键字:arrow    ( 279个结果
js(=>) 箭头函数 详细解说 案例大全
ES6标准新增了一种新的函数:Arrow Function(箭头函数)。 为什么叫Arrow Function?因为它的定义用的就是一个箭头: 上面的箭头函数相当于: 箭头函数相当于匿名函数,并且简化了函数定义。箭头函数有两种格式,一种像上面的,只包含一个表达式,连{ ... }和return都省略 ...
分类:Web程序   时间:2017-01-12 17:19:10    阅读次数:237
企业命名参考
(一)网页内容类标题: title摘要: summary箭头: arrow商标: label网站标志: logo转角/圆角: corner横幅广告: banner子菜单: subMenu搜索: search搜索框: searchBox登录: login登录条:loginbar工具条: toolbar ...
分类:其他好文   时间:2016-12-21 18:26:41    阅读次数:188
Leetcode: Minimum Number of Arrows to Burst Balloons
我的Greedy+Heap做法: Array按start moment升序sort,Heap里按end moment升序sort,一旦到Heap里结束时间最早的气球的end,就要扔arrow,这时在heap里的气球都会被引爆 改进:因为一旦气球爆了的话,Heap里面的元素要全部清空,不需要知道Hea ...
分类:其他好文   时间:2016-12-08 07:38:35    阅读次数:218
MongoDB - The mongo Shell, mongo Shell Quick Reference
mongo Shell Command History You can retrieve previous commands issued in the mongo shell with the up and down arrow keys. Command history is stored in ...
分类:数据库   时间:2016-12-01 07:40:31    阅读次数:376
手动es6编译es5(命令行)
package.json:"devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.18.2", "babel-plugin-transform-es2015-arrow-functions": "^6.8.0", "babel-p ...
分类:其他好文   时间:2016-11-14 15:17:24    阅读次数:269
TypeScript
TypeScript Feature types classes annotations imports language utilities string template (`hello ${world} `) fat arrow function syntax (=>) string temp ...
分类:其他好文   时间:2016-11-05 14:38:25    阅读次数:188
animate()写无限循环
var css = {left:'500px'}; $('.arrow').animate(css,300,rowBack); function rowBack(){ if(css.left '50px') css.left='500px'; else if(css.left '500px') cs ...
分类:其他好文   时间:2016-11-04 22:57:14    阅读次数:1841
Arrow Functions
Arrow Functions是个简写形式的函数表达式,并且它拥有词法作用域的this值(即不会新产生自己作用域下的this, arguments, super 和 new.target 等对象)。此外,箭头函数总是匿名。 箭头函数表达式 (=>) Note: 箭头函数表达式是ECMAScript ...
分类:其他好文   时间:2016-11-02 00:28:45    阅读次数:208
最常用的ES6特性(转)
最常用的ES6特性 let, const, class, extends, super, arrow functions, template string, destructuring, default, rest arguments这些是ES6最常用的几个语法,基本上学会它们,我们就可以走遍天下都 ...
分类:其他好文   时间:2016-10-27 15:16:02    阅读次数:230
廖雪峰js教程笔记5 Arrow Function(箭头函数)
为什么叫Arrow Function?因为它的定义用的就是一个箭头: 上面的箭头函数相当于: 箭头函数 阅读: 45060 ES6标准新增了一种新的函数:Arrow Function(箭头函数)。 为什么叫Arrow Function?因为它的定义用的就是一个箭头: x => x * x 上面的箭头 ...
分类:Web程序   时间:2016-10-26 07:06:53    阅读次数:217
279条   上一页 1 ... 15 16 17 18 19 ... 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!