QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 2047|回复: 0

[HTML/CSS/JS] 9 个好用的 JavaScript 小技巧

[复制链接]

等级头衔

积分成就    金币 : 2861
   泡泡 : 1516
   精华 : 6
   在线时间 : 1322 小时
   最后登录 : 2025-10-13

丰功伟绩

优秀达人突出贡献荣誉管理论坛元老活跃会员

联系方式
发表于 2020-12-12 11:02:29 | 显示全部楼层 |阅读模式
1. 全部替换; w; u+ `8 [) i7 g0 ~& C
       我们都知道 string.Replace() 函数仅能替换掉第一个匹配项。你可以通过在正则表达式的末尾添加 /g 来替换所有出现的内容。
+ r* a1 V8 u7 }& U( j
var example = "potato potato";
console.log(example.replace(/pot/, "tom")); 
// "tomato potato"
console.log(example.replace(/pot/g, "tom")); 
// "tomato tomato"
2. 提取唯一值
9 t3 [8 X9 [8 E6 `       通过使用 Set 对象和 ... 运算符能够使用唯一值创建一个新数组。+ l" p) b$ Z* w0 `1 Z
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. 将数字转换为字符串
" l- {7 e% Q. e, L9 x3 t* E       只需要用 + 运算符带和一个空字符串即可。
1 ^! L* f0 T3 [/ \  t
var converted_number = 5 + "";
console.log(converted_number);
// 5
console.log(typeof converted_number); 
// string
4.将字符串转换为数字
; P% S" ]- i3 p       只需要用 + 运算符即可。但是要注意:它仅适用于“字符串数字”。8 }- |( M6 V( B# L1 [, w
the_string = "123";
console.log(+the_string);
// 123the_string = "hello";
console.log(+the_string);
// NaN
5. 随机排列数组中的元素
1 n5 t, t" Z9 x3 Z' }2 x  N       这样最适合洗牌了:
0 Y' C- A6 j' u& b
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.展平多维数组
7 ]: o# y6 ~8 |& S' x       只需使用 ... 运算符。
2 G: M% h! q1 V  a
var entries = [1, [2, 5], [6, 7], 9];
var flat_entries = [].concat(...entries); 
// [1, 2, 5, 6, 7, 9]
7. 条件短路
! v8 G  e  n# h1 U       只需要举个例子就明白了:* z2 `6 q( L( G+ X& J7 c- g  R
if (available) {
    addToCart();
}
      通过简单地使用变量和函数来简化代码:4 R/ Q9 v( j. K+ ~9 S2 G
available && addToCart()
8. 动态属性名# ]( ]% {/ ]) \* v
       一直以来,我以为必须先声明一个对象,然后才能分配动态属性,但是...) d) C& f: l; ?- _! u! \
const dynamic = 'flavour';
var item = {
    name: 'Coke',
    [dynamic]: 'Cherry'
}
console.log(item); 
// { name: "Coke", flavour: "Cherry" }
9. 用 length 调整货清空数组
$ p  S# T& A& K1 ]; }       如果要调整数组的大小:: W- C: d& ]9 M. ?
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]
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|小黑屋|paopaomj.COM ( 渝ICP备18007172号|渝公网安备50010502503914号 )

GMT+8, 2025-10-15 15:20

Powered by paopaomj X3.5 © 2016-2025 sitemap

快速回复 返回顶部 返回列表