


Unlike programming languages such as C and Java, variables in JavaScript are untyped, and all variable definitions use the keyword var:
var a;
var m, n;
var x=42, y="test";
If a variable is not assigned a value after it is defined, the value of the variable is undefined. For example, the values of the three variables a, m, and n in the above code are all undefined.
Since variables in JS are typeless, it is completely possible to assign different types of values to the same variable, such as:
var b = "temp";
console.log(typeof b);//string
b = 108;
console.log(typeof b);//number
In addition to different types of assignments to the same variable, JavaScript can also define variables repeatedly; if you do this, the variable definition statement after the first time is equivalent to the assignment statement:
var c = "hello";
console.log(c);//hello
var c = true;
console.log(c);//true
In the strict mode of the ECMAScript standard, all variable definitions must use the var keyword. If strict mode is not used, when a JS program assigns a value to an undefined variable, the program will create a property with the same name as the variable in the JS global object, that is, a new global variable will be created. This approach will cause many problems (for example, global variable pollution between multiple JS programs, etc.) and will bring a lot of trouble to later maintenance; therefore, in the actual development process, this approach should be avoided as much as possible.
Storage of variables
If the defined variable is a global variable and the var keyword is not used in the variable definition process, then the variable will exist as an attribute of the global object, which can be obtained by accessing the corresponding attribute of this (global object), or It can be deleted from the global object by using the delete keyword:
var e = "globalVariableValue";//defined outside of any function, it is a global variable, but does not store in "this"
f = "globalVariableValue2";
this.g = "globalVariableValue3";
console.log(this.e);//undefined
console.log(this.f);//globalVariableValue2
console.log(this.g);//globalVariableValue3
delete f;
delete g;
console.log(this.f);//undefined
console.log(this.g);//undefined
For each function call in JavaScript, JavaScript will create a local object to store the local variables defined in the function; if there is a nested function defined inside the function, JavaScript will create a local object after the function has been defined. Define a nested local object inside the local object. For a function, there are as many layers of nested local objects as there are layers of nested function definitions inside it. This local object is called a "function call object" ("call object" in ECMAScript 3, renamed "declarative environment record" in ECMAScript 5, but personally I think the name in ECMAScript 3 is easier to understand).
Contrary to the global object this, JavaScript does not provide any way to access these local objects (function call objects). Therefore, developers cannot operate on these local objects. However, understanding these function call objects will be of great help in understanding some concepts in JavaScript, such as variable scope and closures.

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
