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 to use the JavaScript unary operator

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly introduces the relevant knowledge of how to use the JavaScript unary operator, the content is detailed and easy to understand, the operation is simple and fast, and has a certain reference value. I believe you will gain something after reading this article on how to use the JavaScript unary operator. Let's take a look at it.

Unary operator +

Operator+ can be used to convert variables to numbers:

Example

Var y = "5"; / / y is a string

Var x = + y; / / x is a number

If the variable cannot be converted, it will still be a number, but the value will be NaN (not a number):

Example

Var y = "John"; / / y is a string

Var x = + y; / / x is a number (NaN)

Convert a Boolean value to a number

The global method Number () converts a Boolean value to a number.

Number (false) / / returns 0

Number (true) / / returns 1

Convert a date to a number

The global method Number () converts a date to a number.

D = new Date ()

Number (d) / / returns 1404568027739

The date method getTime () has the same effect.

D = new Date ()

D.getTime () / / returns 1404568027739

This is the end of the article on "how to use the JavaScript unary operator". Thank you for reading! I believe you all have a certain understanding of the knowledge of "how to use the JavaScript unary operator". If you want to learn more, you are welcome to follow the industry information channel.

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