欢迎各位兄弟 发布技术文章
这里的技术是共享的
TypeScript 中的反引号 backtick/backquote (`) 怎么打出来?
也就是数字 1 旁边那个键,即 ~ 下面那个。
TypeScript 中的反引号 backtick/backquote (`) 有什么用?
它也是字符串引号。用处一、直接使用变量;用处二、支持多行字符串。
等效于:
来自 http://www.cftea.com/c/2019/12/11656.asp
- let firstName: string = 'John';
- let title: string = "Web Developer";
- let description = `This TypeScript string can
- span multiple
- lines
- `;
- let firstName: string = `John`;
- let title: string = `Web Developer`;
- let profile: string = `I'm ${firstName}.
- I'm a ${title}`;
- console.log(profile);
- I'm John.
- I'm a Web Developer.
来自 https://blog.csdn.net/snsHL9db69ccu1aIKl9r/article/details/124335148