Introduction to the console. trace () function in JavaScript _ javascript skills

Source: Internet
Author: User
This article mainly introduces the console in JavaScript. trace () function details, console. the trace () function is used to print the stack information of the function call. you can refer to the stack information of the function call when debugging JavaScript programs. trace. The following code is used as an example:

The code is as follows:


Function doTask (){
DoSubTask (1000,10000 );
}

Function doSubTask (countX, countY ){
For (var I = 0; I For (var j = 0; j }
Console. trace ();
}

DoTask ();

A console. trace () statement is inserted at the end of the doSubTask () function execution. This prints the function call stack information on the debugging console. For example, in the Firebug console:

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

Browser support

Like console. trace () and console. log (), it is well supported in browsers with debugging tools. all major browsers support this function.

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.