home archives github knives links
tags javascript
categories
only title title and content
javascript笔记

函数

call, apply, bind

MediaSource

XMLHttpRequest

window.Worker(Web Worker)

参考: 阮一峰

跨域(CORS)

格式

,

立即执行函数

(function(window, undefined) {})(window)

常见技巧

打印堆栈

try {
throw new Error();
} catch(e) {
console.log(e);
}

对象克隆