Home  >  Article  >  Web Front-end  >  Detailed explanation of the Stopwatch function instance tutorial implemented with JavaScript

Detailed explanation of the Stopwatch function instance tutorial implemented with JavaScript

零下一度
零下一度Original
2017-06-15 13:23:161159browse

This article mainly introduces the StopWatch function implemented by Javascript, and analyzes the related operating techniques of customizing StopWatch in Javascript to implement the test running time function based on specific examples. Friends in need can refer to the following

Examples of this article StopWatch function implemented in Javascript. Share it with everyone for your reference, the details are as follows:

Sometimes js is needed to write some functions for 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);
};

Usage example (test Fibonacci sequence):

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>StopWatch</title>
</head>
<body>
<script >
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);
};
var sw = new stopWatch().Start();
(function f(n){return n == 1 || n == 2 ? 1 : f(n-1)+f(n-2);})(45);
alert(sw.Seconds());
</script>
</body>
</html>

The running effect is as follows :

##

The above is the detailed content of Detailed explanation of the Stopwatch function instance tutorial implemented with JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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