Reputation: 53890
I put a breakpoint and see a call stack in Chrome Dev Tools. Then, I want to change something in the code and see how call stack changes.
I wonder, if it's possible to somehow easily save current call stack as an object or a set of string so that to see the difference between two? It can be done by just making screenshots but seems not the best way, just in case there are no other variants.
Thanks!
Upvotes: 9
Views: 3051
Reputation: 728
You can right click inside the call stack and press the 'copy stack trace' and paste it in any text editor.
Upvotes: 10