Which browsers support console.log()?

后端 未结 8 1535
生来不讨喜
生来不讨喜 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:07

    This code will check to see if the function exists and create a dummy in case it does not. Credit: StackOverflow

    if (!window.console) window.console = {};
    if (!window.console.log) window.console.log = function () { };
    

提交回复
热议问题