Once
the debugger is turned on, you can continue execution from any point.
HelloWorld.html
<!DOCTYPE html> <html> <body> <script> document.write("Hello World<br />"); document.write("Hi, How are you<br />"); document.write("I am fine, Thank youe<br />"); document.write("How is your JavaScript Learning<br />"); document.write("Going cool!!!!!!<br />"); </script> </body> </html>
Open
HelloWorld.html in chrome browser.
Turn
on the debugger.
Add
the debug point in first line of JavaScript statement.
Now,
right click on any further java script statement and continue the execution
from there.
For
example, I right click on line number 9, and click on the button ‘Continue to
here’.
Statements till line number 9 are executed.
No comments:
Post a Comment