1

I'm completly new to ChromeDev-Tools so maybe I just oversee something. This is a Screenshot of the value I want to change in a javascript when it reaches my breakpoint.

enter image description here

I need to read the value in Screenshot and change it. Is there a way to do this in GUI with copy paste? Or do i have to code this? With right click I can only Copy property Patch, why not he value? Or do I have to enter some editing mode?

Thanks for helping a beginner.

Greetings

Barmar
  • 741,623
  • 53
  • 500
  • 612

2 Answers2

1

You can use the Console tab for this. You can type a and it will display the value of the variable, and you can assign to a to modify it.

Barmar
  • 741,623
  • 53
  • 500
  • 612
0

Ok I got it:

JSON.stringify(Array.from(new Uint8Array(a)))

But I don't know how to get the changed string back as value for the array...