前端胖头鱼
前端胖头鱼
@daffyfeng 加油😀
@binbinecust 谢谢,😜
@xiaoxielnino 不好意思,回复晚了 ## 点击某个仓库的setting  ## 设置github page  ## 最后通过相应的链接访问你的项目、  ## 比如访问zepto-analysis里面的extend.js 
flex: 0 1 auto的含义大家都说的很清楚,查了一些资料补充一下以下两种情况的子元素在分配主轴空间上的计算方式 ## 主轴空间宽度有剩余,子元素最终的宽度? ``` html .parent { display: flex; width: 600px; } .parent > div { height: 100px; } .item-1 { width: 140px; flex: 2 1 0%;...
``` javascript const longestCommonPrefix = (strs) => { if (!strs.length) { return '' } const compareTwo = (str1, str2) => { let i = 0 while (i < str1.length &&...
准备体验一把,赞楼主
mark
@zaofeng 函数执行结束之后,如果没有显示地返回值,默认是undefined,chrome中会把函数执行的结果打印出来(不过应该只是打印最外层的那个函数) ``` function fn3 () { return true } function fn2 () { fn3() } function fn1 () { fn2() } fn1() // undefined function fn3 () { return...
@mqyqingfeng 多多交流,正在写underscore相关的文章。