码迷,mamicode.com
首页 >  
搜索关键字:arrow    ( 279个结果
python库: arrow (时间)
arrow是个时间日期库,简洁易用。支持python3.6 https://arrow.readthedocs.io/en/latest/ arrow官网api https://github.com/crsmithdev/arrow arrow的GitHub托管的地址 http://www.ipla ...
分类:编程语言   时间:2017-10-28 01:04:48    阅读次数:489
generator详解
generator函数 yield可以返回值,也可以传入值 形式: 注意!generator不能写成arrow function的形式!!! generator是一个异步串行的神器!!! 最传统的异步串行在前面的文章也介绍过,就是不断的嵌套回调函数,非常恶心。 用promise来写异步串行也是如此! ...
分类:其他好文   时间:2017-10-22 11:10:17    阅读次数:105
http://www.bootcss.com/p/font-awesome/design.html
http://www.bootcss.com/p/font-awesome/design.html <li class="active"> <div class="pointer"> <div class="arrow"></div> <div class="arrow_border"></div> ...
分类:Web程序   时间:2017-10-07 18:43:48    阅读次数:150
es6
let, const, class, extends, super, arrow functions, template string, destructuring, default, rest arguments,import export 1.let const let就是局部变量 const就 ...
分类:其他好文   时间:2017-10-06 21:19:30    阅读次数:124
JS面试Q&A(续2): Rest parameter,Arrow function 等
rest parameter 和 Destructuring assignment. function fun1(...theArgs) { console.log(theArgs.length);} // theArgs is an array fun1(); // 0fun1(5); // 1f ...
分类:Web程序   时间:2017-09-30 10:12:43    阅读次数:198
ES6学习笔记<二>
接着上一篇的说。 arrow functions 箭头函数 => 更便捷的函数声明 之前的 function 声明可以被 => 代替,书写起来更便捷。 箭头函数还有个更炫酷也是最使用的用法。 先看个常见的例子: 这里的this指向内层function对象,所以出现undefined,这就是比较蛋疼的 ...
分类:其他好文   时间:2017-09-21 19:26:29    阅读次数:157
Win7常用但是被忽略的快捷键
General keyboard shortcuts 1.Ctrl + Right Arrow Move the cursor to the beginning of the next word 向右移动光标到下个文字开始 2.Ctrl + Left Arrow Move the cursor to ...
分类:Windows程序   时间:2017-09-16 23:22:42    阅读次数:286
Shell Style Guide
Shell Style Guide Revision 1.26 Each style point has a summary for which additional information is available by toggling the accompanying arrow button ...
分类:系统相关   时间:2017-09-16 11:58:21    阅读次数:254
web前端开发企业级CSS常用命名,书写规范总结
1.常用命名 标题: title 摘要: summary 箭头: arrow 商标: label 网站标志: logo 转角/圆角: corner 横幅广告: banner 子菜单: subMenu 搜索:search 搜索框: searchBox 登录: login 登录条:loginbar 工具 ...
分类:Web程序   时间:2017-09-13 11:54:51    阅读次数:233
JavaScript ES6箭头函数指南
前言 胖箭头函数(Fat arrow functions),又称箭头函数,是一个来自ECMAScript 2015(又称ES6)的全新特性。有传闻说,箭头函数的语法=>,是受到了CoffeeScript 的影响,并且它与CoffeeScript中的=>语法一样,共享this上下文。 箭头函数的产生, ...
分类:编程语言   时间:2017-08-31 19:03:35    阅读次数:179
279条   上一页 1 ... 11 12 13 14 15 ... 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!