javascript - 关于一个js函数的问题,为什么已经确定数组为空时,还要再把数组清为空?
PHPz
PHPz 2017-04-10 15:00:59
0
1
466

函数代码如下:

function getEncodeCache(exclude) {
  var i, ch, cache = encodeCache[exclude];
  if (cache) { return cache; }// <--

  cache = encodeCache[exclude] = [];// <--

  for (i = 0; i < 128; i++) {
    ch = String.fromCharCode(i);

    if (/^[0-9a-z]$/i.test(ch)) {
      // always allow unencoded alphanumeric characters
      cache.push(ch);
    } else {
      cache.push('%' + ('0' + i.toString(16).toUpperCase()).slice(-2));
    }
  }

  for (i = 0; i < exclude.length; i++) {
    cache[exclude.charCodeAt(i)] = exclude[i];
  }

  return cache;
}
PHPz
PHPz

学习是最好的投资!

reply all(1)
Peter_Zhu

他是先看看这个cache变量是不是已经定义或者是有没有值了,如果有的话就直接返回,如果没有定义或者没有值,那么就赋值[]

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template