Example of the add-to-zero operation before JavaScript and javascript instance

Source: Internet
Author: User

Example of the add-to-zero operation before JavaScript and javascript instance

The example in this article describes how to perform the zero-padding operation before JavaScript. Share it with you for your reference. The details are as follows:

Most of the time, in order to display the format, the first 0 must be performed if a character string is not in the correct position.

1. Traditional code

/*** Add 0 before operation * @ param number String to be operated * @ param length int destination length */function addZero (number, length) {var buffer = ""; if (number = "") {for (var I = 0; I <length; I ++) {buffer + = "0 ";}} else {if (length <number. length) {return "";} else if (length = number. length) {return number;} else {for (var I = 0; I <(length-number. length); I ++) {buffer + = "0";} buffer + = number ;}} return buffer ;}

2. This code is more concise

Function addZero (str, length) {return new Array (length-str. length + 1). join ("0") + str ;}

I hope this article will help you design javascript programs.

Related Article

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.