In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces how JavaScript uses var to declare variables, the article is very detailed, has a certain reference value, interested friends must read it!
Declare variables using var
Using var, you can declare variables with global or function-level scope, and there are several ways to declare syntax.
Mode 1: var variable name; Mode 2: var variable name 1, variable name 2, … , variable name n; method 3: var variable name 1 = value 1, variable name 2 = value 2,... , variable name n = value n
1) using var, you can declare one variable at a time, or you can declare multiple variables at a time, separated by commas. For example:
Var name; / / declare one variable at a time var name,age,gender; / / declare multiple variables at a time
2) you can declare a variable without initialization (that is, assigning an initial value). At this time, the default value is undefined;, or you can initialize the variable while declaring the variable. For example:
Var name = "Zhang San"; / / initialize variables var name = "Zhang San", age=20,gender; / / initialize some variables var name = "Zhang San", age=20,gender = 'female' in one declaration; / / initialize all variables in one declaration
3) the specific data type of the variable is determined according to the data type of the assigned value, for example:
Var message = "hello"; / / value is a string type, so the type of message variable is string type var message = 123; / / value is numeric, so the type of message variable is numeric type Var message = true;// value is Boolean type, so the type of message variable is Boolean type
4) in practical applications, the declaration of loop variables is often directly regarded as part of the loop syntax. For example:
For (var iTuno Bandi)
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.