Firebug Getting...LOGIN
Firebug Getting Started Tutorial
author:php.cn  update time:2022-04-14 16:53:53

Firebug dynamically executes JavaScript



You can use Firebug to write and execute a JavaScript in real time.

This is for testing and making sure the script is working properly, and is a good way to deploy your JavaScript code before deploying it to production.

Open Firebug > Script (Script) > Display the command line, the code is as follows:

alert("w3cschool.cc")

execute-js-1

After pressing the Enter key, you can immediately See the output of the code. as the picture shows:

execute-js-2

php.cn