这些方法肯定会帮助您:

  • 减少 LOC(代码行数)的数量,
  • 编码比赛,
  • 黑客马拉松
  • 或其他限时任务。⏱

大多数这些 JavaScript Hacks 使用 ECMAScript6(ES2015) 以后的技术,尽管最新版本是 ECMAScript11(ES2020)。

==注意==:以下所有技巧都已在 Google Chrome 的控制台上进行了测试。

1. 声明和初始化数组

我们可以使用默认值(如””、null或 )初始化特定大小的数组0。您可能已经将这些用于一维数组,但如何初始化二维数组/矩阵呢?

  1. const array = Array(5).fill('');
  2. // 输出
  3. (5) ["", "", "", "", ""]
  4. const matrix = Array(5).fill(0).map(()=>Array(5).fill(0));
  5. // 输出
  6. (5) [Array(5), Array(5), Array(5), Array(5), Array(5)]
  7. 0: (5) [0, 0, 0, 0, 0]
  8. 1: (5) [0, 0, 0, 0, 0]
  9. 2: (5) [0, 0, 0, 0, 0]
  10. 3: (5) [0, 0, 0, 0, 0]
  11. 4: (5) [0, 0, 0, 0, 0]
  12. length: 5

2. 找出总和、最小值和最大值 ⭐️ ⭐️ ⭐️

我们应该利用reduce方法来快速找到基本的数学运算。

  1. const array = [5,4,7,8,9,2];
  2. // 求和
  3. array.reduce((a,b) => a+b); // 输出: 35
  4. // 最大限度
  5. array.reduce((a,b) => a>b?a:b); // 输出: 9
  6. // 最小
  7. array.reduce((a,b) => a<b?a:b); // 输出: 2

3. 对字符串、数字或对象数组进行排序 ⭐️ ⭐️ ⭐️

我们有内置的方法 sort() 和 reverse() 用于对字符串进行排序,但是数字或对象数组呢?
让我们看看数字和对象的升序和降序排序技巧。

  1. // 排序字符串数组
  2. const stringArr = ["Joe", "Kapil", "Steve", "Musk"]
  3. stringArr.sort(); // 输出 (4) ["Joe", "Kapil", "Musk", "Steve"]
  4. stringArr.reverse(); // 输出 (4) ["Steve", "Musk", "Kapil", "Joe"]
  5. // 排序数字数组
  6. const array = [40, 100, 1, 5, 25, 10];
  7. array.sort((a,b) => a-b); // 输出 (6) [1, 5, 10, 25, 40, 100]
  8. array.sort((a,b) => b-a); // 输出 (6) [100, 40, 25, 10, 5, 1]
  9. // 对象数组排序
  10. const objectArr = [
  11. { first_name: 'Lazslo', last_name: 'Jamf' },
  12. { first_name: 'Pig', last_name: 'Bodine' },
  13. { first_name: 'Pirate', last_name: 'Prentice' }
  14. ];
  15. objectArr.sort((a, b) => a.last_name.localeCompare(b.last_name));
  16. // 输出
  17. (3) [{…}, {…}, {…}]
  18. 0: {first_name: "Pig", last_name: "Bodine"}
  19. 1: {first_name: "Lazslo", last_name: "Jamf"}
  20. 2: {first_name: "Pirate", last_name: "Prentice"}
  21. length: 3

4. 从数组中过滤出虚假值

Falsy值喜欢0,undefined,null,false,””,’’可以很容易地通过以下方法省略

  1. const array = [3, 0, 6, 7, '', false];
  2. array.filter(Boolean); // 输出 (3) [3, 6, 7]

5. 对各种条件使用逻辑运算符

如果你想减少嵌套 if…else 或 switch case,你可以简单地使用基本的逻辑运算符AND/OR。

  1. function doSomething(arg1){
  2. arg1 = arg1 || 10;
  3. // 如果尚未设置,则将 arg1 设置为 10 作为默认值
  4. return arg1;
  5. }
  6. let foo = 10;
  7. foo === 10 && doSomething();
  8. // is the same thing as if (foo == 10) then doSomething();
  9. // 输出: 10
  10. foo === 5 || doSomething();
  11. // is the same thing as if (foo != 5) then doSomething();
  12. // 输出: 10

6. 删除重复值 ⭐️ ⭐️ ⭐️

您可能已经将 indexOf() 与 for 循环一起使用,该循环返回第一个找到的索引或较新的 includes() 从数组中返回布尔值 true/false 以找出/删除重复项。 这是我们有两种更快的方法。

  1. const array = [5,4,7,8,9,2,7,5];
  2. array.filter((item,idx,arr) => arr.indexOf(item) === idx);
  3. // or
  4. const nonUnique = [...new Set(array)];
  5. // 输出: [5, 4, 7, 8, 9, 2]

7. 创建计数器对象或映射

大多数情况下,需要通过创建计数器对象或映射来解决问题,该对象或映射将变量作为键进行跟踪,并将其频率/出现次数作为值进行跟踪。

  1. let string = 'kapilalipak';
  2. const table={};
  3. for(let char of string) {
  4. table[char]=table[char]+1 || 1;
  5. }
  6. // 输出
  7. {k: 2, a: 3, p: 2, i: 2, l: 2}
  8. // 或
  9. const countMap = new Map();
  10. for (let i = 0; i < string.length; i++) {
  11. if (countMap.has(string[i])) {
  12. countMap.set(string[i], countMap.get(string[i]) + 1);
  13. } else {
  14. countMap.set(string[i], 1);
  15. }
  16. }
  17. // 输出
  18. Map(5) {"k" => 2, "a" => 3, "p" => 2, "i" => 2, "l" => 2}

8. 三元运算符很酷(To do)

您可以避免使用三元运算符嵌套条件 if…elseif…elseif。

  1. function Fever(temp) {
  2. return temp > 97 ? 'Visit Doctor!'
  3. : temp < 97 ? 'Go Out and Play!!'
  4. : temp === 97 ? 'Take Some Rest!';
  5. }
  6. // 输出
  7. Fever(97): "Take Some Rest!"
  8. Fever(100): "Visit Doctor!"

9. 与旧版相比,for 循环更快

  • for并for..in默认为您提供索引,但您可以使用 arr[index]。
  • for..in 也接受非数字,所以避免它。
  • forEach,for…of直接获取元素。
  • forEach也可以为您提供索引,但for…of不能。
  • for并for…of考虑阵列中的孔,但其他 2 个不考虑。

    10.合并2个对象(数据解耦)

    通常我们需要在日常任务中合并多个对象。 ```jsx const user = { name: ‘Kapil Raghuwanshi’, gender: ‘Male’ }; const college = { primary: ‘Mani Primary School’, secondary: ‘Lass Secondary School’ }; const skills = { programming: ‘Extreme’, swimming: ‘Average’, sleeping: ‘Pro’ };

const summary = {…user, …college, …skills};

// 输出 gender: “Male” name: “Kapil Raghuwanshi” primary: “Mani Primary School” programming: “Extreme” secondary: “Lass Secondary School” sleeping: “Pro” swimming: “Average”

  1. <a name="uWNXA"></a>
  2. ## 11. 箭头函数
  3. 箭头函数表达式是传统函数表达式的紧凑替代品,但有局限性,不能在所有情况下使用。由于它们具有词法范围(父范围)并且没有自己的范围this,arguments因此它们指的是定义它们的环境。
  4. ```jsx
  5. const person = {
  6. name: 'Kapil',
  7. sayName() {
  8. return this.name;
  9. }
  10. }
  11. person.sayName();
  12. // 输出
  13. "Kapil"
  14. // 但是
  15. const person = {
  16. name: 'Kapil',
  17. sayName : () => {
  18. return this.name;
  19. }
  20. }
  21. person.sayName();
  22. // 输出
  23. ""

12. 可选链 ⭐️ ⭐️ ⭐️

可选的链接 ?.如果值在 ? 之前,则停止评估。为 undefined 或 null 并返回

  1. const user = {
  2. employee: {
  3. name: "Kapil"
  4. }
  5. };
  6. user.employee?.name;
  7. // 输出: "Kapil"
  8. user.employ?.name;
  9. // 输出: undefined
  10. user.employ.name
  11. // 输出: VM21616:1 Uncaught TypeError: Cannot read property 'name' of undefined

13. 打乱数组

利用内置Math.random()方法。

  1. const list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
  2. list.sort(() => {
  3. return Math.random() - 0.5;
  4. });
  5. // 输出
  6. (9) [2, 5, 1, 6, 9, 8, 4, 3, 7]
  7. // Call it again
  8. (9) [4, 1, 7, 5, 3, 8, 2, 9, 6]

14. 空合并算子 ⭐️ ⭐️ ⭐️

空合并运算符 (??) 是一个逻辑运算符,当其左侧操作数为空或未定义时返回其右侧操作数,否则返回其左侧操作数。

  1. const foo = null ?? 'my school';
  2. // 输出: "my school"
  3. const baz = 0 ?? 42;
  4. // 输出: 0

15. Rest & Spread 展开运算符

那些神秘的3点…可以休息或传播!🤓

  1. function myFun(a, b, ...manyMoreArgs) {
  2. return arguments.length;
  3. }
  4. myFun("one", "two", "three", "four", "five", "six");
  5. // 输出: 6
  6. // 或
  7. const parts = ['shoulders', 'knees'];
  8. const lyrics = ['head', ...parts, 'and', 'toes'];
  9. lyrics;
  10. // 输出:
  11. (5) ["head", "shoulders", "knees", "and", "toes"]

16. 默认参数

  1. const search = (arr, low=0,high=arr.length-1) => {
  2. return high;
  3. }
  4. search([1,2,3,4,5]);
  5. // 输出: 4

17. 将十进制转换为二进制或十六进制

在解决问题的同时,我们可以使用一些内置的方法,例如.toPrecision()或.toFixed()来实现许多帮助功能。

  1. const num = 10;
  2. num.toString(2);
  3. // 输出: "1010"
  4. num.toString(16);
  5. // 输出: "a"
  6. num.toString(8);
  7. // 输出: "12"

18. 使用解构简单交换两值

  1. let a = 5;
  2. let b = 8;
  3. [a,b] = [b,a]
  4. [a,b]
  5. // 输出
  6. (2) [8, 5]

19. 单行回文检查

嗯,这不是一个整体的速记技巧,但它会让你清楚地了解如何使用弦乐。

  1. function checkPalindrome(str) {
  2. return str == str.split('').reverse().join('');
  3. }
  4. checkPalindrome('naman');
  5. // 输出: true

20.将Object属性转成属性数组 ⭐️ ⭐️ ⭐️

  1. // 使用Object.entries(),Object.keys()和Object.values()
  2. const obj = { a: 1, b: 2, c: 3 };
  3. Object.entries(obj);
  4. // 输出
  5. (3) [Array(2), Array(2), Array(2)]
  6. 0: (2) ["a", 1]
  7. 1: (2) ["b", 2]
  8. 2: (2) ["c", 3]
  9. length: 3
  10. // 取key,返回array
  11. Object.keys(obj);
  12. (3) ["a", "b", "c"]
  13. // 取value,返回array
  14. Object.values(obj);
  15. (3) [1, 2, 3]

参考资料

https://bbs.huaweicloud.com/blogs/334711

https://juejin.cn/post/7068853819135754253