Create shortcut to console.log() in Chrome

后端 未结 4 896
臣服心动
臣服心动 2020-11-28 12:34

Because I\'m lazy, I created a function log that basically is just an abbreviation of console.log:

function log() {
  console.log.a         


        
4条回答
  •  -上瘾入骨i
    2020-11-28 13:11

    When I reported it, it was refused but the answer was simple - create the shortcut like this:

    var log = console.log.bind(console);
    

    This doesn't leave out the line number, whilst you can call it like log(...).

提交回复
热议问题