JavaScript area is not case sensitive

青灯夜游
Release: 2023-01-04 09:35:16
Original
4236 people have browsed it

javascript is case sensitive. JavaScript is a case-sensitive language, and the naming of variable methods is strictly case-sensitive. When using keywords, variables, function names, and all identifiers in JavaScript, you must use consistent character case.

JavaScript area is not case sensitive

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

javascript is case sensitive.

JavaScript is a case-sensitive language, and the naming of variable methods is strictly case-sensitive. Example: var abc and var Abc are two impossible variables.

When using keywords, variables, function names, and all identifiers in JavaScript, you must use consistent character case.

For example, the keyword "while" must be entered as "while" and cannot be entered as "While" or "WHILE". Similarly, "online", "Online", "OnLine" and "ONLINE" " are four different variable names.

But be aware that HTML is not case-sensitive, which can be easily confused since it is closely related to client-side JavaScript. Many JavaScript objects and properties have the same names as the HTML tags and properties they represent.

In HTML these tags and property names can be entered in any case, but in JavaScript they are usually lowercase. For example, in HTML, the event handler property onclick is usually declared as onClick, but in JavaScript code only onclick can be used.

Recommended learning: javascript advanced tutorial

The above is the detailed content of JavaScript area is not case sensitive. 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