BeneficialYam7 | 1 points | Nov 25 2021 18:35:06

string interpolation有什么用啊?直接用string concatenation不行吗?有什么区别?

const pet = 'cat';
console.log(`I love  ${pet}.`);

const pet = 'cat';
console.log('I love '+pet);

有什么区别啊?

[-] UNI_C | 6 points | Nov 25 2021 18:44:34

啊这,这种问题,stack overflow上各种都有回答的,最重要的技能是先用英文把你的问题表达出来,然后你发现,你想问的问题居然都有人问过。。。。。

[-] CCP8964 | 5 points | Nov 25 2021 18:38:22

第一个更方便,尤其是要填充的东西较多,或需要修改格式时

[-] swanseameow | 3 points | Nov 25 2021 19:24:23

编程tv

[-] oldoldshirley | 3 points | Nov 25 2021 19:48:11

  1. time and space performance 不同。你用了const,compiler没有办法在compile的时候做concatenation,因此concat就比interpolation显著更慢。如果用的是var,又只是这种简单的use case,时间上的区别比较小。空间上concat会create多余的copies。
  2. type casting的问题。如果你的pet是个数字,第二种不work。

[-] dungeonmaster705 | 2 points | Nov 26 2021 00:49:59

码农TV是吧

[-] [deleted] | 1 points | Nov 25 2021 18:40:37

[deleted]

[-] SquirtleCringe | 1 points | Nov 25 2021 18:56:38

第二种容易写错看着乱

[-] stockings_kat | 1 points | Nov 25 2021 19:22:09

字符串拼接写多了容易错

[-] Difficult-Sleep-7060 | 1 points | Nov 26 2021 03:45:21

这是什么language

[-] No-Battle-8981 | 1 points | Nov 26 2021 06:45:41

别浪费时间在语法上面,所有语言大体都差不多(都是抄来抄去),熟悉了就找点有兴趣的项目写写,然后再回头看这些语法,喜欢的就留下,不喜欢的就当没学过。

后面也说了,就是功能和性能的区别。其实大部分语言表层的发明创造主要还是功能,性能只是顺手能做就做。

功能就是字符串格式化,在开发中经常用到,你要是尝试过几门语言就明白,这种基于占位符的格式化方式是目前最先进的方式,用起来比字符串连接方便、清晰。

[-] BeneficialYam7 | 0 points | Nov 25 2021 18:39:14

One of the biggest benefits to using template literals is the readability of the code. Using template literals, you can more easily tell what the new string will be. You also don’t have to worry about escaping double quotes or single quotes. 好像是这个原因。是为了readability。还有其它的原因吗?