How to make your own countUp.js plugin using JavaScript ? Last Updated : 27 Jul, 2025 Suggest changes Share Like Article Like Report prerequisite: Document Object Model ( DOM ) Use of Classes in ES6 If you are a beginner in JavaScript and have basic programming knowledge then don't worry, you have landed in a perfect place. Let us divide the problem into multiple segments: Implementing a simple structure using HTML.Providing a basic display style using CSS.The main programming to implement, the behavior using JavaScriptonclick="....( )" : To trigger the functionCreating a class with the name CounterUsing a constructor to initialize the classCreating the method/function with the name shoot( ) for animationCalling the method shoot from the class Counter Step 1: Implementing the HTML HTML <!---inside body----> <div class="container"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20200326201748/download312.png" /> <div class="main"> <h1 id="counter"> _______ </h1> <!-- This is the target id --> <button onclick="trigger()"> START </button> </div> </div> <!-- Inside body --> <script> // Including JavaScript Code </script> Step 2: Implementing the CSS CSS .container { display: flex; padding:20px; } .main{ padding:20px; } button{ width:100px; height:45px; background-color:#33ff33; border-radius:10px; } Step 3: JavaScript JavaScript // Creating the Class: Object Prototype class Counter { // Countructor: Initializing the Class constructor(data) { this.start = data["start"]; this.end = data["end"]; this.frames = data["frames"]; this.step = data["step"]; this.target = data["target"]; } // Method for Animation shoot() { // Variables var count = 0; var stepArray = []; // Putting the starting Value document.getElementById(this.target) .innerHTML = this.start; // Storing the step value in Array while (this.end > this.start) { this.start += this.step; stepArray[count++] = this.start; } // Doing Countup Animation var functional_target = this.target; for (let i = 0; i < count; i++) { setTimeout(function () { document.getElementById(functional_target) .innerHTML = stepArray[i]; }, (i + 1) * this.frames); } // Placing the final value setTimeout(function () { document.getElementById( functional_target).innerHTML = this.end; }, count * frames); } } // Creating object from class var animate = new Counter({ start: 100000, end: 2000000, frames: 1, step: 1000, target: "counter" }); // Triggering the Class Method function trigger() { // Calling the shoot() method of the class animate.shoot(); } Output: Custom Countup Preview Main Used Functions: document.getElementById(Target Id).innerHTML setTimeout( function() { Function Here } , timedelay ) OVERVIEW The flow of the Program This is the basic prototype of the custom countUp.js that we can implement using the concept of Class in JavaScript. One can also use their own function to render the values in specific ways. S sandeep10shaw Follow Article Tags : JavaScript Web Technologies JavaScript-Questions Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)9 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like