Debugging easy definition : the process of identifying and removing errors
from computer hardware or software.
This debugging process often takes a long time, as fixing some errors may
introduce others.
Testing easy definition: Testing is the process to find bugs and errors.
*There is no need of design knowledge in the testing process.
*Testing can be manual or automated.
*Testing is initiated after the code is written.
var x = 15 * 5;
debugger;
document.getElementById("demo").innerHTML = x;