@[email protected] to Programmer [email protected] • 5 months agoprint('here1');lazysoci.alimagemessage-square38fedilinkarrow-up1768arrow-down118
arrow-up1750arrow-down1imageprint('here1');lazysoci.al@[email protected] to Programmer [email protected] • 5 months agomessage-square38fedilink
minus-square@[email protected]linkfedilink9•5 months agoThat’s console.trace() for all you JS devs out there.
minus-square@[email protected]linkfedilink3•edit-25 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]}
minus-square@[email protected]linkfedilink1•5 months agoI also use group and groupend to nicely collapse different logs. and table when i’m feeling funny.
That’s
console.trace()
for all you JS devs out there.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]}
I also use group and groupend to nicely collapse different logs. and table when i’m feeling funny.