Consider

   function f(a, b=a, a=3, c=a) {
      return a+" "+b+" "+c
   }

   console.log(f(1));

Based upon the conclusions about argument binding at the recent TC39 meeting 
this will display:
  "3 1 3"

Any disagreement of this?

Allen
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to