美文网首页vue、javascript
9 个极其强大的 JavaScript hacker 技巧

9 个极其强大的 JavaScript hacker 技巧

作者: 源大侠 | 来源:发表于2021-03-21 11:02 被阅读0次

    所谓 hacker 方法,就是一种不断改进和迭代的构建方法。有着 hacker 精神的程序员相信事物总有改进的余地,没有什么是完美的存在。每一段代码都有进一步优化的空间,每一个操作都有更便捷的技巧。
    下面列举一些非常强大的 JavaScript hack 技巧。

    1. Replace All

    我们知道 string.Replace() 函数只会替换第一个项目。
    你可以在这个正则表达式的末尾添加 /g 来替换所有内容。

    var example = "potato potato";
    console.log(example.replace(/pot/, "tom")); 
    // "tomato potato"
    console.log(example.replace(/pot/g, "tom")); 
    // "tomato tomato"
    

    2. 提取唯一值

    我们可以使用 Set 对象和 Spread 运算符,创建一个剔除重复值的新数组。

    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. 将数字转换为字符串

    我们只需使用带空引号的串联运算符即可。

    var converted_number = 5 + "";
    console.log(converted_number);
    // 5
    console.log(typeof converted_number); 
    // string
    

    4. 将字符串转换为数字

    用 + 运算符即可。
    请注意这里的用法,因为它只适用于“字符串数字”。

    the_string = "123";
    console.log(+the_string);
    // 123
    the_string = "hello";
    console.log(+the_string);
    // NaN
    

    5. 随机排列数组中的元素

    每天我都在随机排来排去……

    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. 展平多维数组

    只需使用 Spread 运算符。

    var entries = [1, [2, 5], [6, 7], 9];
    var flat_entries = [].concat(...entries); 
    // [1, 2, 5, 6, 7, 9]
    

    7. 短路条件

    举个例子:

    if (available) {
        addToCart();
    }
    

    只需使用变量和函数就能缩短它:

    available && addToCart()
    

    8. 动态属性名称

    我一直以为我必须先声明一个对象,然后才能分配一个动态属性。

    const dynamic = 'flavour';
    var item = {
        name: 'Coke',
        [dynamic]: 'Cherry'
    }
    console.log(item); 
    // { name: "Coke", flavour: "Cherry" }
    

    9. 使用 length 调整大小 / 清空数组

    基本上就是覆盖数组的 length。
    如果我们要调整数组的大小:

    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]
    

    如果我们要清空数组:

    var entries = [1, 2, 3, 4, 5, 6, 7]; 
    console.log(entries.length); 
    // 7 
    entries.length = 0; 
    console.log(entries.length); 
    // 0 
    console.log(entries); 
    // []
    

    你也在搜寻 JavaScript hacker 技巧的话,希望本文对你有帮助。

    相关文章

      网友评论

        本文标题:9 个极其强大的 JavaScript hacker 技巧

        本文链接:https://www.haomeiwen.com/subject/hfencltx.html