• quink
    link
    fedilink
    arrow-up
    9
    ·
    1 month ago

    That’s console.trace() for all you JS devs out there.

    • alqloe@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      1 month ago

      I always combine that with objects with the shorthand notation. So you always know what variable has what value without having to remember in what order you printed the variables.

      console.trace({i, list});
      // {i: 1, list: [0, 1, 2]}