1. 全部替换
* L: N/ j: l8 O. C6 M7 H( n5 l 我们都知道 string.Replace() 函数仅能替换掉第一个匹配项。你可以通过在正则表达式的末尾添加 /g 来替换所有出现的内容。
1 ^3 D6 {# [1 W$ ^1 E' ^5 nvar example = "potato potato";
console.log(example.replace(/pot/, "tom"));
// "tomato potato"
console.log(example.replace(/pot/g, "tom"));
// "tomato tomato" 2. 提取唯一值+ K% k& f7 p f5 d8 Q$ y
通过使用 Set 对象和 ... 运算符能够使用唯一值创建一个新数组。
, M1 V. `; b) Mvar 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. 将数字转换为字符串
) r0 S, M0 l4 f9 }7 J 只需要用 + 运算符带和一个空字符串即可。
0 n) E) s% m8 |) ]" Ivar converted_number = 5 + "";
console.log(converted_number);
// 5
console.log(typeof converted_number);
// string 4.将字符串转换为数字( T/ p& g2 d6 {9 p% s5 U
只需要用 + 运算符即可。但是要注意:它仅适用于“字符串数字”。
5 b7 L5 |$ e6 C3 V( j4 _ j5 l$ kthe_string = "123";
console.log(+the_string);
// 123the_string = "hello";
console.log(+the_string);
// NaN 5. 随机排列数组中的元素" y- I, r& ?9 W, s
这样最适合洗牌了:
( q9 {- B/ C$ x, b3 j( F+ bvar 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.展平多维数组% e) z2 t8 q3 ^& H
只需使用 ... 运算符。
; ~# x6 O+ r1 x8 z" uvar entries = [1, [2, 5], [6, 7], 9];
var flat_entries = [].concat(...entries);
// [1, 2, 5, 6, 7, 9] 7. 条件短路) d( Z$ A& Z5 W6 r* F: w8 n8 d* r
只需要举个例子就明白了:9 \* G6 w; h9 O5 s
if (available) {
addToCart();
} 通过简单地使用变量和函数来简化代码:; T/ h" k- I! F7 |
available && addToCart() 8. 动态属性名* j/ r! s# R7 g+ K9 Y* J, k) A
一直以来,我以为必须先声明一个对象,然后才能分配动态属性,但是...
+ s; ]$ B6 b1 e W5 e" V# }const dynamic = 'flavour';
var item = {
name: 'Coke',
[dynamic]: 'Cherry'
}
console.log(item);
// { name: "Coke", flavour: "Cherry" } 9. 用 length 调整货清空数组8 b% p$ a! H- Q6 v6 s4 \% ~1 Q
如果要调整数组的大小:
* F g* H4 n) G, Cvar 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]
|