Can javascript use single quotes?

WBOY
Release: 2022-04-06 11:09:59
Original
1928 people have browsed it

Single quotes can be used in JavaScript. Single quotation marks can be used as the starting character and closing character of a string, and only the same type of single or double quotation marks can be used to define the start and end; when using the same quotation marks in the same type of quotation marks, the quotation marks need to be escaped, and different quotation marks Quotes can be nested directly.

Can javascript use single quotes?

The operating environment of this tutorial: Windows 10 system, JavaScript version 1.8.5, Dell G3 computer.

Can JavaScript use single quotes?

Can JavaScript use single quotes.

Both single quotes and double quotes can be used as the starting and closing characters of a string, and only the same type of single or double quotes can be used to define the start and end;

Using the same quotation marks in the same type of quotation marks needs to be escaped before use. Different quotation marks can be nested.

Use single quotation mark ' ' in double quotation mark " " without adding backslash, for example:

var x="my name 'is' xxx"  // 此处不需要加反斜杠
Copy after login

Use double quotation mark " " in double quotation mark " " and you need to add backslash, for example:

var x="my name \"is\" xxx"  // 此处需要在两个上引号前各加一个加反斜杠
Copy after login

Use double quotes " " in single quotation marks ' '. There is no need to add a backslash. Of course, you can add it. For example:

var x1 ='my name "is" xxx'     // 此处不需要加反斜杠(推荐)
var x2 ='my name \"is\" xxx'   // 添加反斜杠效果也一样(不推荐)
Copy after login

Test the effect, as shown in the figure below:

Can javascript use single quotes?

Related recommendations: javascript learning tutorial

The above is the detailed content of Can javascript use single quotes?. 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!