Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does javascript convert a number into a string

2025-03-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how javascript converts numbers into strings". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Javascript will be a number into a string of methods: 1, the number and empty string addition operation, the syntax "num +"; 2, the use of toString () method, syntax "num.toString ()"; 3, the use of toFixed () method, syntax "num.toFixed ()".

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

Javascript converts numbers to strings

1. Use the plus operator

When a number is added to an empty string, JavaScript automatically converts the value to a string.

Var n = 123 typeof n = n + "; console.log (typeof n); / / return type is string

2. Use the toString () method

Var n = 123 n = n.toString (); console.log (typeof n)

3. Use the toFixed () method

Var n = 123.21 * * n = n.toFixed (); console.log (typeof n)

This is the end of "how javascript converts numbers into strings". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report