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 WeChat Mini Programs declare variables

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

Share

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

This article mainly shows you "how WeChat Mini Programs declares variables". The content is simple and clear. I hope it can help you solve your doubts. Next, let the editor lead you to study and learn the article "how WeChat Mini Programs declares variables".

Concept

Variables in WXS are references to values.

Variables that are not declared are directly assigned and are defined as global variables.

If only variables are declared and no values are assigned, the default value is undefined.

The performance of var is consistent with that of javascript, and there will be variable improvement.

Var foo = 1 bar = "hello world"; var I; / / I = undefined

The above code declares three variables foo, bar and I respectively. Then, foo assigns the numeric value 1, and bar assigns the string "hello wolrd".

Variable name

Variable naming must follow the following two rules:

The first character must be: letter (a-zA-Z), underscore (_)

The remaining characters can be: letters (a-zA-Z), underscores (_), numbers (0-9)

Reserved identifier

The following identifiers cannot be used as variable names:

Delete void typeofnull undefined NaN Infinity varif else true falserequirethis function argumentsreturnforwhiledobreakcontinueswitchcasedefault above is all the contents of the article "how WeChat Mini Programs declares variables". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, 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