Answers for "add trailing 0 to end of string javascript"

2

Javascript adding zeros to the beginning of a string

const number = 5;

number.toString().padStart(2, '0');
Posted by: Guest on February-13-2021
2

javascript remove leading zeros from string

use a regular expression like this  

var strNumber = "0049";  
console.log(typeof strNumber); //string  
  
var number  = strNumber.replace(/^0+/, '');
Posted by: Guest on March-15-2021

Code answers related to "add trailing 0 to end of string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language