Tagged Questions
The variable-caching tag has no wiki summary.
6
votes
3answers
177 views
Local Variables take 7x longer to access than global variables?
I was trying to benchmark the gain/loss of "caching" math.floor, in hopes that I could make calls faster.
Here was the test:
<html>
<head>
<script>
window.onload = function()
{
...
3
votes
6answers
210 views
Does jQuery $(this) need to be cached
I recently came accross some blog posts about jQuery performance (i.e. http://net.tutsplus.com/tutorials/javascript-ajax/10-ways-to-instantly-increase-your-jquery-performance/) and it was stated in ...