Which browsers support console.log()?

后端 未结 8 1533
生来不讨喜
生来不讨喜 2020-12-03 13:12

Do all browsers support this? I would like to output an error using console.log() but was wondering if this supported by all browsers?

console.         


        
8条回答
  •  清歌不尽
    2020-12-03 14:03

    Make a wrapper function:

    function log(text) {
      if (window.console) {
         window.console.log(text);
      }
    }
    

提交回复
热议问题