哪些浏览器支持bind()?

11 javascript

我必须在下面的方法中使用bind().我只想支持IE10及以上版本.任何人都可以验证IE10何时或是否支持bind()?

    // Verify console exists
    ...    
    if (window.console) {
        logger = window.console.log.bind(window.console);
        // bind needed for Safari but not FF, possible IE issue?
    } else {
        return false; // window.console not available, silent fail
    }
    ...
Run Code Online (Sandbox Code Playgroud)

Ian*_*Ian 9

bind自版本以来已在IE中得到支持9.请查看此兼容性表,该表与MDN文档链接bind:http://kangax.github.com/es5-compat-table/