javascript syntax

Posted by Michael on Stack Overflow See other posts from Stack Overflow or by Michael
Published on 2010-05-04T01:22:10Z Indexed on 2010/05/04 1:28 UTC
Read the original article Hit count: 218

Filed under:
|
   var ret = [] 
             ,xresult = document.evaluate(exp, rootEl, null,
                         XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null)
             ,result = xresult.iterateNext();
   while (result) {
     ret[ret.length]= result;
     result = xresult.iterateNext();
   }

can anyone explain me what is the ret = [],..,... syntax? Initializing array?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about syntax