Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我想将以下字符串文字存储在变量中:
ab'c'd
那么使用单引号(')和/或反引号(`)的各种方法是什么?
你有两个选择:
单引号:
var = 'ab''c''d'.
回勾:
var = `ab'c'd`.
假设您只关心单引号,使用 Back Tick 是更简单的解决方案。
引号通常应该用反引号“引用”。