在網(wǎng)上看到這樣一個(gè)性能優(yōu)化的方法,不是很明白。
“對(duì)于性能有高要求的場(chǎng)合,建議存在一個(gè)空函數(shù)的常量,供多處使用共享。”
var EMPTY_FUNCTION = function () {};function MyClass() { }MyClass.prototype.abstractMethod = EMPTY_FUNCTION; MyClass.prototype.hooks.before = EMPTY_FUNCTION; MyClass.prototype.hooks.after = EMPTY_FUNCTION;
這種優(yōu)化方式在實(shí)踐中如何使用?