良纵的博客目录

 

  • 注册gmail:使用qq邮箱
  • puppeteer:
    .npmrc:puppeteer_download_host = https://npm.taobao.org/mirrors
    yarn add puppeteer -D

     

  • jsperf
  • 使用unicode的字符串length属性
  • console.log('\u0041'.length); // 1
    console.log('A'.length); // 1
    

     

  • 闭包有什么用
    • 沟通函数内外
    • 阻止函数内部变量被垃圾回收
  • 开发建议:定义函数时,对于可选参数可以全都放在一个json中作为形参传递过来
  • 建议不要使用/* */来做注释,因为它可能造成正则表达式错误
  • /*
       var rm_a = /a*/.match(s);
    */
    /*
        console.log('/* dsaf */');
    */

     

  • const str = 'regular_month_income_chart'; // regularMonthIncomeChart
    const firstUpperCase = ([first, ...rest]) => first.toUpperCase() + rest.join('')
    const format = (str)=>((strArray=str.split('_')) => strArray.slice(0,1).concat(strArray.slice(1).map(firstUpperCase)).join(''))();
    console.log(format(str)); // regularMonthIncomeChart

     

  • 神奇的地方
    • ~a == -a-1(~a +1== -a )
    • 良纵的博客目录_第1张图片
  • 系统负载
  • 批量替换json字段名
  • js求阶乘
  • 安全的concat
  • Chrome DevTools:https://juejin.im/post/5ec338436fb9a0432d76e0c4
  • 开发者工具:https://www.html.cn/doc/chrome-devtools/
  • hooks:
  • ip: https://www.ipaddress.com
  • iterm美化
    • Failed to connect to raw.githubusercontent.com port 443
    • https://juejin.im/post/5da19f735188255542399cdd
  • 快排
  • 文件权限:chmod a+x 文件名
  • 任务栏有多高
  • JavaScript寄生组合继承
  • JavaScript使用function创造类,和es6中的class的一点区别
  • JavaScript对象遍历方式对比
  • 已知对象求构造函数
  • 给一个初始值1202,单位是秒,实现在页面上进行倒计时,展示为hh:mm:ss的格式。
  • 数组转json
  • JavaScript数组转换方法:toString、valueOf、toLocaleString
  • var name = Symbol();
  • JavaScript面向对象的理解
  • null & undefined
  • 细解JavaScript ES7 ES8 ES9 新特性
  • 获取所有s开头标签
  • css秒针动画
  • JavaScript发送100个请求,最多同时3个ajax
  • JavaScript合并升序数组
  • JavaScript删除树节点
  • Array.prototype.sort是稳定的排序算法么?
  • JavaScript判断数组的三种方式对比
  • service worker
  • 基础提升
  • JavaScript所有对象都是Object的实例么?
  • 使用es7装饰器
  • 模块化对比
  • JavaScript实现二叉搜索树及其先序遍历、中序遍历、后序遍历

  • 微信小程序访问外部链接:
  • 原生js实现拖拽
  • 原生js实现图片缩放
  • setInterval动画的缺点和requestAnimationFrame对比试验
  • setState异步or同步试验
  • 使用postmsg让两个页面互相传递消息
  • bigint序列化JSON.stringify
  • 当前页面是否活跃
  • code安装损坏,请重新安装
  • mac卸载vscode
  • 安装homebrew
    • https://mintimate.cn/2020/04/05/Homebrew/
  • 红绿灯
  • 找出公共数组
  • 复制到剪切板
  • graphql

  • nest:
    • 中文
    • 英文
    • 知乎
  • tsc:
    • 文档
    • 优秀博客
  • 翻译
  • tcp/ip状态
  • 张鑫旭
  • anaconda
  • python100
  • 软件目录
  • 测试文件下载
  • github推荐
  • 酷站集合
  • 国风react组件库
  • 蔡勒公式今天周几
  • 链式调用
  • 判空
  • 52张牌随机分给4个人
  • 从一个数组中随机出去几个样本
  • 节流防抖
  • vue vs react 
  • javaScripts tricks :https://www.html.cn/30-seconds-of-code/#call
  • javascript简洁代码集合
    • export const getAllParam = ()=>{
          const q={};
          location.search.replace(/([^?&=]+)=([^&]+)/g,(_,k,v)=>q[k]=v);
          return q;
      }
      export const getParamByKey = (key)=>{
          const res = getAllParam();
          if(Object.getOwnPropertyNames(res).includes(key)){
              return res[key];
          }
          return undefined;
      }

       

  • css形状大全
  • 张鑫旭
  • 膜拜leetcode大神
  • 特殊字符html、css、js
  • before、after
  • 只有ie浏览器支持的标签:basefont command
  • 引入reactroute4
  • 三栏布局
  • linux虚拟机共享文件夹:
    • ①http://www.cngxit.com/html/2015/linux_0614/271.html
    • ②https://blog.csdn.net/dcrmg/article/details/80455957
  • gedit下载
  • sha错误
  • js编码规范
  • 含有map的json, JSON.stringify失败解决方案
  • 金额格式化
  • 时间戳转string
  • pandownload
  • node-sass
  • mac卸载node:
    • ①https://codeday.me/bug/20170218/1271.html
    • ②http://phoeshow.github.io/2017/05/15/Mac%E5%88%A0%E9%99%A4nodejs%E7%9A%84%E6%96%B9%E6%B3%95/
  • 数据mock平台
  • 高质量壁纸:
    • http://www.win4000.com/wallpaper.html
    • 海贼王:https://www.zhihu.com/question/56339999
    • The best wallpapers on the Net!
  • Openssl for windows
  • sha认证失败
  • 遍历对象并且移除属性
  • graphql
  • koa
    • 阮一峰
    • 廖雪峰
    • 进阶
  • mongodb
    • 安装报错
      brew tap mongodb/brew
      brew install mongodb-community
    • shell和服务版本不对应

      mongod --repair

  • mac别名 
    • 添加alias mysql=/usr/local/mysql/bin/mysql
    • 删除 unalias mysql
  • shell命令统计文件夹下有多少.ts结尾的文件
  • shell:TCP状态为TIME_WAIT的目的主机统计
  • 优秀博客:
    • http://jartto.wang/
    • 王柯纬
    • 一题
  • centos安装n

 

 

 

你可能感兴趣的:(show,面试题)