The Console.trace () function in JavaScript describes _javascript techniques

Source: Internet
Author: User

When debugging a JavaScript program, you sometimes need to print stack information for a function call, which can be achieved by using console.trace (). Take the following code as an example:

Copy Code code as follows:

function Dotask () {
Dosubtask (1000,10000);
}

function Dosubtask (countx,county) {
for (Var i=0;i<countx;i++) {
for (Var j=0;j<county;j++) {}
}
Console.trace ();
}

Dotask ();

A row of console.trace () statements is inserted at the end of the execution of the Dosubtask () function, which prints the function call stack information at that point in the Debug console. For example, in the Firebug console, this is:

Firebug console, Console.trace () not only prints the function call stack information, but also displays the values of each parameter in the function call.

Browser support

Console.trace (), like Console.log (), is well supported in browsers with debugging tools, and is supported by major browsers.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.