You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
217 B

  1. var ob = {};
  2. var max = 5230; // just before call stack breaks
  3. var count = 0;
  4. function g(o) {
  5. if (count++ < max) {
  6. o.k = {};
  7. g(o.k);
  8. }
  9. else {
  10. o.k = 'cool';
  11. }
  12. }
  13. g(ob);
  14. console.log(JSON.stringify(ob));