Hacker News new | ask | show | jobs
by ZiadHilal 4888 days ago
In issue 1, in the third code snippet within the for loop. Shouldn't this code:

  finalParams[key] = defaultParams[key];
be written as

  finalParams[key] = paramObject[key];
1 comments

I think you may be right. :-)