Answers for "add zeros at the end of a string in 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

Code answers related to "add zeros at the end of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language