Caspian Xue
Caspian Xue
> The method for choosing the pivot as implemented at the moment results in degenerate behaviour when the array is already sorted or reverse sorted. A better way is to...
很有收获,谢谢博主
如果能加些格式的话读起来会更舒服,这样的 style 有些像 txt。不过可以看出作者是用心了的,打 call
haha funny
@sorrycc 惊,云谦也换VSCode了,看来Atom真的要gg了
推荐的很好用 💪
期待魔鬼训练营
感谢作者 @mqyqingfeng ,学到了很多,也写一个自己优化的版本 ```javascript function objectFactory() { var args = Array.prototype.slice.call(arguments); var Constructor = args.shift(); var instance = Object.create(Constructor.prototype); var temp = Constructor.apply(instance, args); return (typeof temp === 'object' &&...