What are variables in js and what types are they

青灯夜游
Release: 2018-12-13 16:06:29
Original
5148 people have browsed it

In js, variables are containers for storing information; there are two types of variables in JavaScript: local variables and global variables.

What are variables in js and what types are they

#How to declare variables in js?

In js, you can use the keyword "var" or "let" and add the "variable name" to declare a variable. [Recommended related video tutorials:JavaScript Tutorial]

The names of js variables, also called identifiers, need to follow some standards:

1. The name must start with letters ( a to z or A to Z), begin with an underscore (_) or dollar ($) sign, but it is not recommended to use an underscore (_) or dollar ($) sign at the beginning.

2. After the first letter, you can also use numbers (0 to 9), such as value1.

3. JS variables are case-sensitive. For example: x and X are different variables.

Let’s take a look at the declaration of js variables through examples:

Correct variable declaration:

var x = 10 ; var _value = "sonoo" ;
Copy after login

Incorrect variable declaration:

var 123 = 30 ; var * aa = 320 ;
Copy after login

JavaScript local variables

Variables declared within a block or function are called local variables; local variables can only be accessed within the declared block or function. The declared block or function has no effect and cannot be accessed. Example:

Copy after login

Rendering:

What are variables in js and what types are they

This is because the variable x and variable y are both local variables; the variable x is in the function abc( ) is called and output internally, but variable y cannot be called and output outside function abc(), and an error will be reported:

What are variables in js and what types are they

JavaScript global variable

Variables declared outside a block or function, or declared using a window object, are called global variables. Global variables can be accessed by any function (or block) throughout the code. Example:

Copy after login

Rendering:

What are variables in js and what types are they

It can be seen that the local variable y cannot be accessed and output outside the function abc(), and an error will be reported:

What are variables in js and what types are they

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

The above is the detailed content of What are variables in js and what types are they. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn