Format a number to two decimal places

前端 未结 1 1101
情话喂你
情话喂你 2021-02-12 19:03

Give me a native (no jQuery, Prototype, etc. please) JavaScript function that converts numbers as follows:

input:  0.39, 2.5,  4.25, 5.5,  6.75, 7.75, 8.5
outpu         


        
相关标签:
1条回答
  • 2021-02-12 19:27
    input = 0.3;
    output = input.toFixed(2);
    //output: 0.30
    
    0 讨论(0)
自定义标题
段落格式
字体
字号
代码语言
提交回复
热议问题