• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
四品带砖侍卫
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2
2022年12月14日
mac系统彻底删除vscode
摘要: 1.退出vscode应用。 2.输入如下指令,删除vscode的设置和配置: sudo rm -rf $HOME/Library/Application\ Support/Code 3.输入如下指令,删除vscode的插件: sudo rm -rf $HOME/.vscode 4.从 Applica 阅读全文
posted @ 2022-12-14 10:32 四品带砖侍卫 阅读(1830) 评论(0) 推荐(0)
2022年8月26日
一个数组按照固定的个数分成多个数组,用于分页
摘要: function getNewArray(array, subGroupLength) { let index = 0; let newArray = []; while(index < array.length) { newArray.push(array.slice(index, index + 阅读全文
posted @ 2022-08-26 17:38 四品带砖侍卫 阅读(66) 评论(0) 推荐(0)
表格列相同元素合并列单元格
摘要: const mergeCells = (text: string, data: any, key: string, index: number) => { if (data?.length !== 0) { if (index !== 0 && text data[index - 1][key]) 阅读全文
posted @ 2022-08-26 17:37 四品带砖侍卫 阅读(81) 评论(0) 推荐(0)
多个数组中数值最大的数组
摘要: let a=[1,2,3,4,99] let b=[2,3,4,10] let c=[1,4,5,4,1] let Amax = Math.max(...a) let Bmax = Math.max(...b) let Cmax = Math.max(...c) const getMax=()=>{ 阅读全文
posted @ 2022-08-26 17:35 四品带砖侍卫 阅读(26) 评论(0) 推荐(0)
2020年11月17日
数组中的find、filter、forEach、map 区别
摘要: find():返回通过测试的数组的第一个元素的值 var arr = [1,2,3,4,5,6,7] var num = arr.find(item=>{ return item>=5 }) console.log(num) //5 filter(): 创建一个新数组,新数组中的元素是通过检查指定数 阅读全文
posted @ 2020-11-17 11:03 四品带砖侍卫 阅读(138) 评论(0) 推荐(0)
上一页 1 2
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3