How To Format a Number with Two Decimals 您所在的位置:网站首页 视频应用软件有哪些可以随便看电影的 How To Format a Number with Two Decimals

How To Format a Number with Two Decimals

2024-06-21 07:49| 来源: 网络整理| 查看: 265

How TO - Format a Number with Two Decimals ❮ Previous Next ❯

Learn how to format a number with two decimals in JavaScript.

Format a Number with Two Decimals

You can use the toFixed() method to format a number to only show two decimals. Note that the result is rounded (shows 5.57 instead of 5.56):

Example let num = 5.56789;let n = num.toFixed(2);  // 5.57 Try it Yourself »

If you want to display three decimals, just change the number to 3:

Example let num = 5.56789;let n = num.toFixed(3);  // 5.568 Try it Yourself »

Tip: Learn more about the toFixed() method in our JavaScript Reference.

❮ Previous Next ❯ ★ +1   W3schools Pathfinder Track your progress - it's free!   Log in Sign Up


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有