Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using comma in Javascript variable declaration

Tags:

javascript

I just came across the following code:

function showMatch(str, reg) {
var res = [], matches
 while(true) {
  matches = reg.exec(str)
  if (matches === null) break
   res.push(matches[0])
  if (!reg.global) break
alert(res)
}

Can anybody please explain the second row? Does

var res = [], matches 

equal

var res=[]; res=matches

or

var res=[]; var matches=[]

?

I guess the second answer is correct? I find this little confusing...

like image 336
DDEX Avatar asked Jan 25 '15 09:01

DDEX


Video Answer


1 Answers

It equivalent to

var res = []; 
var matches; 

where matches is undefined

like image 124
Oleksandr T. Avatar answered Sep 17 '22 18:09

Oleksandr T.