Home > Web Front-end > JS Tutorial > body text

JavaScript中把数字转换为字符串的程序代码_基础知识

WBOY
Release: 2016-05-16 17:32:04
Original
1105 people have browsed it

1:把数字转换为字符串的方法

复制代码 代码如下:

     var string_value = String(number);
     string_value = number.toString();

      var n = 17;
      binary_string = n.toString(2);                //Evaluates to "10001"
      octal_string = "0" + n.toString(8);        //Evaluates to "021"
      hex_string = "0x" + n.toString(16);      //Evaluates to "0x11"

      var n = 123456.789;
      n.toFixed(0);                   //"1234567"
      n.toFixed(2);                  //"123456.79"
      n.toExponential(1);      //"1.2e+5"
      n.toExponential(3);      //"1.235e+5"
      n.toPrecision(4);         //"1.235e+5"
      n.toPrecision(7);         //"123456.8"

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!