我必须在下面的方法中使用 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
}
...