简介
console.log、调试辅助函数、调试小技巧
⚠️ 请注意本文不是讲 console 各种方法,请不要点出去。
本来想取名为 console
黑魔法,顺手讲一点 console
的其他方法。可是查阅资料的时候发现好多文章都已经写得非常好了,这部分相关的内容大家可以到掘金
查看 ? 传送门。
今天来讲点不一样的,其实有了那么多 console
方法开发中最经常用到的还是 console.log
,那你知道怎么让 console.log
来帮你摸 ? 减少 Debug 工作量嘛?
ps: 当然天下除虫,唯断点调试不破。
普通 Debug
在开发时最经常碰到的场景之一就是函数嵌套了:
star(
pushmetop(
github('ok!')
)
)
好家伙这嵌套够深,如果前方产品八米加急找到你说请求 star 函数出错了,一脸视死如归的同学打开对应代码开始调试:
const a = github('ok!');
console.log(a);
const b = pushmetop(a);
console.log(b);
const c = star(b);
console.log(c);
超级 Debug
好家伙满满当当的魔术变量和 console.log
,这显然会减少大量摸?时间,机智的我们为何不对 console.log
进行升级:
const superme = (x) => (console.log(x), x)
小技巧:利用逗号表达式来写写出优雅的代码,例如 x => (x=x+1, x)
。
这下再除虫简直不要太舒服,简直指哪打哪
:
star(pushmetop(
// 想除哪就除拿
superme(github('ok!'))
))
超超级 Debug
除了 iphone 有 plus 我们的 debug
怎么可能没有呢?
const supermePlus = (x, fn = (y) => y) => fn(x)
有了 supermePlus 我们可以在调试的时候方便的插入调试代码:
star(
// 想怎么加就怎么加
supermePlus(pushmetop(github('ok!')), (x) => {
// 测试 x 是不是数字
console.log(typeof x === 'number' && x === x);
return x;
})
);
也可以方便的替换值:
star(
supermePlus(pushmetop(github('ok!')), (x) => 'good!')
);
其他
提供一个简单的函数定义,方便大家测试本文章中的代码
const github = x => x;
const pushmetop = x => x + '!';
const star = x => x + '?';
一起成长
在困惑的城市里总少不了并肩同行的 伙伴
让我们一起成长。
- 如果您想让更多人看到文章可以点个
点赞
。 - 如果您想激励小二可以到 Github 给个
小星星
。 - 如果您想与小二更多交流添加微信
m353839115
。
本文原稿来自 PushMeTop
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。