This question already has answers here:
JavaScript Number preserve leading 0
                                
                                    (3个答案)
                                
                        
                2年前关闭。
            
        

如何强制JavaScript在Int类型的数字前保留0

我有一些数字映射代码,它们都以0开头,因此我需要将它们作为每个代码的一部分传递。

var mapcode = "042";
mapcode = parseInt(mapcode);
console.log(mapcode);

最佳答案

据我所知,唯一的方法是将其保留为字符串或在显示之前添加0



var mapcode = "042";
mapcode = parseInt(mapcode);
console.log(0 + mapcode.toString());

07-24 18:39