We have seen DOM caching before and function delegation is also a kind of function caching. Take a look at the following snippet:for(var i=0; i<count; ++i)
$get('divContent').appendChild(elements); As you can figure out the code is going to be
Read More