字符串

2019-06-24  本文已影响0人  _Wizard
var hello = "Hello, ";
console.log(hello.concat("tws", " have a nice day.")); // Hello, tws have a nice day.
console.log(hello); // Hello, 

我们会发现,其实concat()方法的作用和+,+=的作用是一样的。但使用+,+=会获得更好的性能体验,因此,建议使用赋值操作符(+, +=)代替concat()方法。

'Blue Whale'.includes('blue'); // false (大小写不同)
'Blue Whale'.includes('Blue'); // true
var str = 'abcdefghij';
str.substr(0,3); // 'abc'
str.substr(3,3); // 'def'
str.substr(3); // 'defghij'
var str = 'abcdefghij';
str.substring(0,3); // 'abc'
str.substring(3,3); // ''  (因为从3到3,中间没有字符)
str.substring(3); // 'defghij'
str.substring(2,3); // 'c'
上一篇下一篇

猜你喜欢

热点阅读