A voir également:
- Javascript - Int -> Char
- Telecharger javascript pour pc - Télécharger - Langages
- Int converter - Télécharger - Bureautique
- A javascript error occurred in the main process français - Forum Windows
- Javascript arrondi ✓ - Forum Windows
- Javascript arrondir à 2 décimales - Forum Webmastering
4 réponses
et en convertissant avant le nombre en string
var day = 123; day.toString(); day = '0' + day; document.write(day);