LoStorage.js - Client-side storage the way it should be (github.com) 1 points by js-coder 13y ago ↗ HN
[–] n-gauge 13y ago ↗ Good example and if your using the ! in front of the function to save a byte you could change the for loops like so:for (var i = 0, l = keys.length; i < l; i++) {tofor (var i = keys.length; i--;) {(to save even more)
1 comment
[ 3.5 ms ] story [ 23.7 ms ] threadfor (var i = 0, l = keys.length; i < l; i++) {
to
for (var i = keys.length; i--;) {
(to save even more)