1. 全部替换
" }/ g7 k. p8 M, ?$ {7 x1 d 我们都知道 string.Replace() 函数仅能替换掉第一个匹配项。你可以通过在正则表达式的末尾添加 /g 来替换所有出现的内容。4 H) v' i/ }) Z9 o: f
var example = "potato potato";
console.log(example.replace(/pot/, "tom"));
// "tomato potato"
console.log(example.replace(/pot/g, "tom"));
// "tomato tomato" 2. 提取唯一值
& O6 [9 X5 `' W, x& K 通过使用 Set 对象和 ... 运算符能够使用唯一值创建一个新数组。$ a, o& j; Y+ z* n" a) V
var entries = [1, 2, 2, 3, 4, 5, 6, 6, 7, 7, 8, 4, 2, 1]
var unique_entries = [...new Set(entries)];
console.log(unique_entries);
// [1, 2, 3, 4, 5, 6, 7, 8] 3. 将数字转换为字符串
+ w; ?/ O+ q, @3 i 只需要用 + 运算符带和一个空字符串即可。) H% E3 r) `! j1 y2 z8 m% o
var converted_number = 5 + "";
console.log(converted_number);
// 5
console.log(typeof converted_number);
// string 4.将字符串转换为数字; T$ B: P% V2 s$ _* d/ d5 y' ~; \
只需要用 + 运算符即可。但是要注意:它仅适用于“字符串数字”。
# Y3 \" l, c# H/ T; h' Qthe_string = "123";
console.log(+the_string);
// 123the_string = "hello";
console.log(+the_string);
// NaN 5. 随机排列数组中的元素
5 S$ l& G& L2 b3 X- V 这样最适合洗牌了:3 W4 C' K+ F" ]
var my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log(my_list.sort(function() {
return Math.random() - 0.5
}));
// [4, 8, 2, 9, 1, 3, 6, 5, 7] 6.展平多维数组
8 S9 v1 C2 D/ U# p& A0 H; v 只需使用 ... 运算符。. [- z1 |( m$ K5 U
var entries = [1, [2, 5], [6, 7], 9];
var flat_entries = [].concat(...entries);
// [1, 2, 5, 6, 7, 9] 7. 条件短路
9 _) a& |+ Q& {5 m5 K1 ~ 只需要举个例子就明白了:
" L. H4 k3 ]' K& n" h D! c/ ~# Jif (available) {
addToCart();
} 通过简单地使用变量和函数来简化代码:
0 ]! n0 Z" K& E% i7 c- Xavailable && addToCart() 8. 动态属性名9 i' M9 P; P& Y5 j1 b- J
一直以来,我以为必须先声明一个对象,然后才能分配动态属性,但是...
1 H( Y5 O4 q8 {- }$ i+ w( aconst dynamic = 'flavour';
var item = {
name: 'Coke',
[dynamic]: 'Cherry'
}
console.log(item);
// { name: "Coke", flavour: "Cherry" } 9. 用 length 调整货清空数组1 c7 Q! B7 T$ }6 g g8 K! S6 w8 y
如果要调整数组的大小:! V) g$ B! f( f; C
var entries = [1, 2, 3, 4, 5, 6, 7];
console.log(entries.length);
// 7
entries.length = 4;
console.log(entries.length);
// 4
console.log(entries);
// [1, 2, 3, 4]
|