print('here1');sabreW4K3@lazysoci.al to Programmer Humor@programming.dev – 757 points – 3 months ago45Post a CommentPreviewYou are viewing a single commentView all commentsShow the parent commentThat'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.
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.
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]}
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.
I also use group and groupend to nicely collapse different logs. and table when i'm feeling funny.