JavaScript : How to inspect break point values in Chrome Debugger tools JavaScript : How to inspect break point values in Chrome Debugger tools google-chrome google-chrome

JavaScript : How to inspect break point values in Chrome Debugger tools


You can

  • hover with the mouse over the interested variables
  • open the "Scope Variables" section on the right sidebar
  • open the console ("Press Esc") and type in the variable to see its value

For instance:

enter image description here


select break point variable 's' and right click on selected 's' and choose option add to watch then u can see s value in right side of Chrome Debugger window and press F10 to dibug next line.