Home > Web Front-end > JS Tutorial > body text

Summary of 5 years of using js

php中世界最好的语言
Release: 2018-04-23 10:07:35
Original
1324 people have browsed it

This time I will bring you a summary of 5 years of using js. What are the precautions when using js? Here are actual cases, let’s take a look.

I have been using JavaScript for 5 years. I have summarized some experiences for everyone to learn from.

1. Assigning values ​​to undeclared variables will cause a ReferenceError to be thrown in strict mode (meaning, all variables must be defined with var, and global variables cannot be defined inside a function);

2. In strict mode, variables named eval and arguments cannot be defined, otherwise it will cause syntax error;

3. Determine whether a variable value is equal to undefined It is to formally distinguish between null object pointers and uninitialized variables;

4. As long as the variable intended to save the object has not actually saved the object, the object should be explicitly allowed to save the null value. This not only reflects null serves as a convention for object pointers, and also helps to further distinguish null from undefined;

5. Octal literals are invalid in strict mode and will cause supported Javascript engines to throw errors;

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of JS debugging usage

##Steps to implement JS sending json format POST request

The above is the detailed content of Summary of 5 years of using js. 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!