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

What is the type of JavaScript automatic conversion

2025-01-17 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 "what is the type of automatic conversion of JavaScript". 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!

Automatic conversion type

When JavaScript attempts to manipulate a "wrong" data type, it is automatically converted to the "correct" data type.

The following output is not what you expected:

5 + null / / returns 5 null converted to 0

"5" + null / / returns "5null" null converted to "null"

"5" + 1 / / returns "51" 1 to convert to "1"

"5"-1 / / return 4 "5" converted to 5

Automatically convert to a string

When you try to output an object or a variable, JavaScript automatically calls the variable's toString () method:

Document.getElementById ("demo") [xss_clean] = myVar

MyVar = {name: "Fjohn"} / / toString is converted to "[object Object]"

MyVar = [1, 2, 3, 4] / / toString is converted to "1, 2, 3, 4"

MyVar = new Date () / / toString converted to "Fri Jul 18 2014 09:08:55 GMT+0200"

Numbers and Boolean values are also often converted to each other:

MyVar = 123 / / toString converted to "123"

MyVar = true / / toString converted to "true"

MyVar = false / / toString converted to "false"

This is the end of the content of "what is the type of automatic conversion of JavaScript". 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