Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5999327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:32:12+00:00 2026-05-23T00:32:12+00:00

In C# whenever I wanted to print two digit numbers I’ve used int digit=1;

  • 0

In C# whenever I wanted to print two digit numbers I’ve used

int digit=1;
Console.Write(digit.ToString("00"));

How can I do the same action in Javascript ?
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T00:32:12+00:00Added an answer on May 23, 2026 at 12:32 am

    c# digit.toString("00") appends one zero to the left of digit (left padding). In javascript I use this functon for that:

    function zeroPad(nr,base){
      var  len = (String(base).length - String(nr).length)+1;
      return len > 0? new Array(len).join('0')+nr : nr;
    }
    zeroPad(1,10);   //=> 01
    zeroPad(1,100);  //=> 001
    zeroPad(1,1000); //=> 0001
    

    You can also rewrite it as an extention to Number:

    Number.prototype.zeroPad = Number.prototype.zeroPad || 
         function(base){
           var nr = this, len = (String(base).length - String(nr).length)+1;
           return len > 0? new Array(len).join('0')+nr : nr;
        };
     //usage:
    (1).zeroPad(10);   //=> 01
    (1).zeroPad(100);  //=> 001
    (1).zeroPad(1000); //=> 0001
    

    [edit oct. 2021]

    A static es20xx Number method, also suitable for negative numbers.

    Number.padLeft = (nr, len = 2, padChr = `0`) => 
      `${nr < 0 ? `-` : ``}${`${Math.abs(nr)}`.padStart(len, padChr)}`;
    console.log(Number.padLeft(3));
    console.log(Number.padLeft(284, 5));
    console.log(Number.padLeft(-32, 12));
    console.log(Number.padLeft(-0)); // Note: -0 is not < 0
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Up until now we used Ant in my company. Whenever we wanted to send
Can these two properties of a dropdown list in ASP.NET be used independently? I
Just wanted to know how i would replace sitename.com with sitename2.com whenever a user
Whenever you write a query where you need to filter out rows on a
i wanted to reload an element whenever there is a click event on any
I wanted to slide down(or up) all of the #bu2 ids whenever the user
basically what I wanted to do is whenever an li is removed (via jquery
I have a thread that is calling two separate threads to do somework. Whenever
I have draggable items that can be cloned. I wanted each clone to be
I have a program, but when I input float numbers whenever the program asks

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.