


All values in JavaScript can be implicitly converted to Boolean type, such as:
So when we use three equal signs for comparison:
Assign initial values to parameters
There is no repetition in JavaScript The concept of loading, but the parameters of functions in JavaScript are optional. If one parameter is missing when calling, it will be replaced by undefined.
The question now is, if the second parameter is not passed, how to assign an initial value to it?
Some netizens mentioned plus(2, 0) = 3; This is indeed the case. It seems that this Some special processing needs to be done:
Prevent others from loading your page in an Iframe
If your When a website becomes very popular, many websites will want to link to your website, and even want to embed your web page into its own web page through IFrame.
This is not fun, so how to stop this behavior?
String replacement
String.prototype.replace function often confuses programmers who are very familiar with C# or Java.
For example:
If you pass a string as the first parameter, only the first matching string found is replaced.
To solve this problem, we can use regular expressions:
Convert arguments into an array
The predefined variable arguments in the function is not a real array, but an array-like object.
It has the length attribute, but it does not have functions such as slice, push, sort, etc. So how to make arguments have functions that are only available for these arrays?
In other words, how to make arguments into a real array?
Specify the second parameter for the parseInt function
parseInt Used to convert a string into an integer number, the syntax is:
If the second parameter is not passed, the following rules are followed:
-> If str starts with 0x, it is considered to be hexadecimal.
->If str starts with 0, it is considered to be octal.
-> Otherwise, it is considered to be decimal.
So the following code will be confusing if you don’t know the rules:
So, for safety reasons, you must specify the second parameter for parseInt .
Delete an element from the array
Maybe we can do it by delete:
In fact, we can delete elements in the array through the splice function in Array.prototype, as shown below:
Functions are also objects
In JavaScript, functions are also objects because we can add properties to functions.
For example:
Of course this can be achieved in a more elegant way:
Maximum value in the array
How to find the maximum value in an array full of numbers, we can simply do it through a loop:
Add console.log function for IE
Under Firefox and with the support of Firebug, we often use console.log to record some information in the console.
However, this approach will prevent the execution of JavaScript under IE (the same is true when Firebug is not enabled under Firefox), because there is no console object at all at this time.
We can use the following tips to prevent this situation from happening:
Is
undefined a reserved keyword in JavaScript?
looks like it, but in fact undefined is not a keyword in JavaScript:
Note: Never do this in a JavaScript program, this trick just tells you that this is the case.
Determine whether a variable is undefined
In two cases, a variable is undefined:
1. The variable is declared, but no value is assigned
A general method is provided below:
Preload images
Preload images is to load images that do not exist on the page so that they can be quickly displayed later using JavaScript .
For example, if you want to display another picture when the mouse moves over a picture:

So, how to load a set of images? Consider the following code:
So the correct way to write it should be:
Closure
Closure refers to a local variable within a function, which is still available when the function returns.
When you define another function inside a function, you create a closure, a famous example:
Reference article
Private variables
We often use naming conventions to indicate whether a variable is a private variable (most commonly used to indicate) :
The main trick is to use anonymous functions and closures.
JavaScript has no block-level context (Scope)
Block-level code in JavaScript has no context. In fact, only functions have their own context.
Weird NaN
NaN is used to indicate that a value is not a number.
NaN behaves strangely in JavaScript because NaN is not equal to any value (including itself).
You can use window. isNaN to judge:
True and false values
All values in JavaScript can be implicitly converted to Boolean type.
In conditional judgment, the following values will be automatically converted to false:
null, undefined, NaN, 0, '', false
Therefore, there is no need to make the following complicated judgments :
Modify arguments
For example, add a value to arguments:
Solution:
Boolean and new Boolean
we can Think of Boolean as a function, used to generate Boolean type values (Literal):
We can also regard Boolean as a constructor and create a Boolean type object through new:
Fast string concatenation
We often use to convert shorter Strings are concatenated into one long string, which is fine in most cases.
But if there are a large number of strings that need to be concatenated, this approach will encounter performance problems, especially under IE.
You can see Firefox It seems that the operator has been optimized, while IE behaves stupidly.
Unary operator
In JavaScript, we can use the unary operator " " before a string. This will convert the string to a number, returning NaN if the conversion fails.
If used in front of a non-string, conversion attempts will be made in the following order:Call valueOf() and call toString() to convert it into a number
encodeURI and encodeURIComponent
window.encodeURI function is used to encode a URL, but the following characters will not be encoded: ":", "/", " ;", "?".
window.encodeURIComponent will encode the above characters.
We illustrate with an example:
table.innerHTML is a read-only attribute under IE
We often fill nodes through the node's innerHTML attribute, such as:
So if you create a table dynamically, the following provides a feasible method:
Hello | World! |
0.1 0.2 != 0.3
JavaScript treats decimals as floating point numbers, so some rounding errors may occur, such as:

去掉重复并排序的方法: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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
