sabreW4K3@lazysoci.al to Programmer Humor@programming.dev · 3 months agoprint('here1');lazysoci.alimagemessage-square42fedilinkarrow-up1794arrow-down118
arrow-up1776arrow-down1imageprint('here1');lazysoci.alsabreW4K3@lazysoci.al to Programmer Humor@programming.dev · 3 months agomessage-square42fedilink
minus-squarequink@lemmy.mllinkfedilinkarrow-up9·3 months agoThat’s console.trace() for all you JS devs out there.
minus-squarelemmesay@discuss.tchncs.delinkfedilinkarrow-up1·3 months agoI also use group and groupend to nicely collapse different logs. and table when i’m feeling funny.
minus-squarealqloe@lemmy.dbzer0.comlinkfedilinkarrow-up3·edit-23 months agoI 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]}
That’s
console.trace()
for all you JS devs out there.I also use group and groupend to nicely collapse different logs. and table when i’m feeling funny.
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]}