Sample code sharing of how Javascript implements the StopWatch function

黄舟
Release: 2017-06-18 13:08:40
Original
1308 people have browsed it

This article mainly introduces the StopWatch function implemented byJavascript, and analyzes the related operating skills of javascript custom StopWatch to implement the test running time function based on specific examples. Friends in need can refer to the following

The example in this article describes the StopWatch function implemented by Javascript. Share it with everyone for your reference, the details are as follows:

Sometimes js is needed to write somefunctionsfor testing. If you need to test the execution time, you may need a stopwatch:

StopWatch class:


function stopWatch() { } stopWatch.prototype.Start = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Stop = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Seconds = function () { return Math.abs((new Date() - this.startD) / 1000); };
Copy after login

Usage example (test Fibonacci sequence):


    StopWatch 
Copy after login

The running effect is as follows :

##

The above is the detailed content of Sample code sharing of how Javascript implements the StopWatch function. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!