2021年不可错过的34种JS优化技巧

Vue中文社区 今天

作者丨 Atit
译者丨王者
转载丨前端之巅
开发者总是在学习新东西,而跟上这些技术的变化不应该比之前更难。我写这篇文章的目的是介绍 JavaScript 的一些最佳实践,作为前端开发人员,掌握了这些最佳实践会让我们在 2021 年的工作变得更轻松。

你可能做了很长时间的 JavaScript 开发,但有时候你可能没有使用最新的 JavaScript 特性或技巧,这些特性和技巧可以在不需要编写额外代码的情况下解决你的问题。它们可以帮助你写出干净且优化的 JavaScript 代码。此外,如果你在 2021 年准备去参加面试,可以参考本文的内容。

1. 带有多个条件的 if 语句

把多个值放在一个数组中,然后调用数组的 includes 方法。

//longhandif (x === 'abc' || x === 'def' || x === 'ghi' || x ==='jkl') {    //logic}//shorthandif (['abc', 'def', 'ghi', 'jkl'].includes(x)) {   //logic}
2. 简化 if true...else

对于不包含大逻辑的 if-else 条件,可以使用下面的快捷写法。我们可以简单地使用三元运算符来实现这种简化。

// Longhandlet test: boolean;if (x > 100) {    test = true;} else {    test = false;}// Shorthandlet test = (x > 10) ? true : false;//or we can use directlylet test = x > 10;console.log(test);

如果有嵌套的条件,可以这么做。

let x = 300,test2 = (x > 100) ? 'greater 100' : (x < 50) ? 'less 50' : 'between 50 and 100';console.log(test2); // "greater than 100"
3. 声明变量

当我们想要声明两个具有相同的值或相同类型的变量时,可以使用这种简写。

//Longhand let test1;let test2 = 1;//Shorthand let test1, test2 = 1;
4. null、undefined 和空值检查

当我们创建了新变量,有时候想要检查引用的变量是不是为非 null 或 undefined。JavaScript 确实有一个很好的快捷方式来实现这种检查。

// Longhandif (test1 !== null || test1 !== undefined || test1 !== '') {    let test2 = test1;}// Shorthandlet test2 = test1 || '';
5. null 检查和默认赋值
let test1 = null,    test2 = test1 || '';console.log("null check", test2); // output will be ""
6. undefined 检查和默认赋值
let test1 = undefined,    test2 = test1 || '';console.log("undefined check", test2); // output will be ""

一般值检查

let test1 = 'test',    test2 = test1 || '';console.log(test2); // output: 'test'

另外,对于上述的 4、5、6 点,都可以使用?? 操作符。

如果左边值为 null 或 undefined,就返回右边的值。默认情况下,它将返回左边的值。

const test= null ?? 'default';console.log(test);// expected output: "default"const test1 = 0 ?? 2;console.log(test1);// expected output: 0
7. 给多个变量赋值

当我们想给多个不同的变量赋值时,这种技巧非常有用。

//Longhand let test1, test2, test3;test1 = 1;test2 = 2;test3 = 3;//Shorthand let [test1, test2, test3] = [1, 2, 3];
8. 简便的赋值操作符

在编程过程中,我们要处理大量的算术运算符。这是 JavaScript 变量赋值操作符的有用技巧之一。

// Longhandtest1 = test1 + 1;test2 = test2 - 1;test3 = test3 * 20;// Shorthandtest1++;test2--;test3 *= 20;
9. if 判断值是否存在

这是我们都在使用的一种常用的简便技巧,在这里仍然值得再提一下。

// Longhandif (test1 === true) or if (test1 !== "") or if (test1 !== null)// Shorthand //it will check empty string,null and undefined tooif (test1)

注意:如果 test1 有值,将执行 if 之后的逻辑,这个操作符主要用于 null 或 undefinded 检查。

10. 用于多个条件判断的 && 操作符

如果只在变量为 true 时才调用函数,可以使用 && 操作符。

//Longhand if (test1) { callMethod(); } //Shorthand test1 && callMethod();
11. for each 循环

这是一种常见的循环简化技巧。

// Longhandfor (var i = 0; i < testData.length; i++)// Shorthandfor (let i in testData) or  for (let i of testData)

遍历数组的每一个变量。

function testData(element, index, array) {  console.log('test[' + index + '] = ' + element);}[11, 24, 32].forEach(testData);// logs: test[0] = 11, test[1] = 24, test[2] = 32
12. 比较后返回

我们也可以在 return 语句中使用比较,它可以将 5 行代码减少到 1 行。

// Longhandlet test;function checkReturn() {    if (!(test === undefined)) {        return test;    } else {        return callMe('test');    }}var data = checkReturn();console.log(data); //output testfunction callMe(val) {    console.log(val);}// Shorthandfunction checkReturn() {    return test || callMe('test');}
13. 箭头函数
//Longhand function add(a, b) {    return a + b; } //Shorthand const add = (a, b) => a + b;

更多例子:

function callMe(name) {  console.log('Hello', name);}callMe = name => console.log('Hello', name);
14. 简短的函数调用

我们可以使用三元操作符来实现多个函数调用。

// Longhandfunction test1() {  console.log('test1');};function test2() {  console.log('test2');};var test3 = 1;if (test3 == 1) {  test1();} else {  test2();}// Shorthand(test3 === 1? test1:test2)();
15. switch 简化

我们可以将条件保存在键值对象中,并根据条件来调用它们。

// Longhandswitch (data) {  case 1:    test1();  break;  case 2:    test2();  break;  case 3:    test();  break;  // And so on...}// Shorthandvar data = {  1: test1,  2: test2,  3: test};data[something] && data[something]();
16. 隐式返回

通过使用箭头函数,我们可以直接返回值,不需要 return 语句。

//longhandfunction calculate(diameter) {  return Math.PI * diameter}//shorthandcalculate = diameter => (  Math.PI * diameter;)
17. 指数表示法
// Longhandfor (var i = 0; i < 10000; i++) { ... }// Shorthandfor (var i = 0; i < 1e4; i++) {
18. 默认参数值
//Longhandfunction add(test1, test2) {  if (test1 === undefined)    test1 = 1;  if (test2 === undefined)    test2 = 2;  return test1 + test2;}//shorthandadd = (test1 = 1, test2 = 2) => (test1 + test2);add() //output: 3
19. 延展操作符简化
//longhand// joining arrays using concatconst data = [1, 2, 3];const test = [4 ,5 , 6].concat(data);//shorthand// joining arraysconst data = [1, 2, 3];const test = [4 ,5 , 6, ...data];console.log(test); // [ 4, 5, 6, 1, 2, 3]

我们也可以使用延展操作符进行克隆。

//longhand// cloning arraysconst test1 = [1, 2, 3];const test2 = test1.slice()//shorthand// cloning arraysconst test1 = [1, 2, 3];const test2 = [...test1];
20. 模板字面量

如果你厌倦了使用 + 将多个变量连接成一个字符串,那么这个简化技巧将让你不再头痛。

//longhandconst welcome = 'Hi ' + test1 + ' ' + test2 + '.'//shorthandconst welcome = `Hi ${test1} ${test2}`;
21. 跨行字符串

当我们在代码中处理跨行字符串时,可以这样做。

//longhandconst data = 'abc abc abc abc abc abc\n\t'    + 'test test,test test test test\n\t'//shorthandconst data = `abc abc abc abc abc abc         test test,test test test test`
22. 对象属性赋值
let test1 = 'a'; let test2 = 'b';//Longhand let obj = {test1: test1, test2: test2}; //Shorthand let obj = {test1, test2};
23. 将字符串转成数字
//Longhand let test1 = parseInt('123'); let test2 = parseFloat('12.3'); //Shorthand let test1 = +'123'; let test2 = +'12.3';
24. 解构赋值
//longhandconst test1 = this.data.test1;const test2 = this.data.test2;const test2 = this.data.test3;//shorthandconst { test1, test2, test3 } = this.data;
25. 数组 find 简化

当我们有一个对象数组,并想根据对象属性找到特定对象,find 方法会非常有用。

const data = [{        type: 'test1',        name: 'abc'    },    {        type: 'test2',        name: 'cde'    },    {        type: 'test1',        name: 'fgh'    },]function findtest1(name) {    for (let i = 0; i < data.length; ++i) {        if (data[i].type === 'test1' && data[i].name === name) {            return data[i];        }    }}//ShorthandfilteredData = data.find(data => data.type === 'test1' && data.name === 'fgh');console.log(filteredData); // { type: 'test1', name: 'fgh' }
26. 条件查找简化

如果我们要基于不同的类型调用不同的方法,可以使用多个 else if 语句或 switch,但有没有比这更好的简化技巧呢?

// Longhandif (type === 'test1') {  test1();}else if (type === 'test2') {  test2();}else if (type === 'test3') {  test3();}else if (type === 'test4') {  test4();} else {  throw new Error('Invalid value ' + type);}// Shorthandvar types = {  test1: test1,  test2: test2,  test3: test3,  test4: test4};var func = types[type];(!func) && throw new Error('Invalid value ' + type); func();
27. indexOf 的按位操作简化

在查找数组的某个值时,我们可以使用 indexOf() 方法。但有一种更好的方法,让我们来看一下这个例子。

//longhandif(arr.indexOf(item) > -1) { // item found }if(arr.indexOf(item) === -1) { // item not found}//shorthandif(~arr.indexOf(item)) { // item found}if(!~arr.indexOf(item)) { // item not found}

按位 (~) 运算符将返回 true(-1 除外),反向操作只需要!~。另外,也可以使用 include() 函数。

if (arr.includes(item)) { // true if the item found}
28. Object.entries()

这个方法可以将对象转换为对象数组。

const data = { test1: 'abc', test2: 'cde', test3: 'efg' };const arr = Object.entries(data);console.log(arr);/** Output:[ [ 'test1', 'abc' ],  [ 'test2', 'cde' ],  [ 'test3', 'efg' ]]**/
29. Object.values()

这也是 ES8 中引入的一个新特性,它的功能类似于 Object.entries(),只是没有键。

const data = { test1: 'abc', test2: 'cde' };const arr = Object.values(data);console.log(arr);/** Output:[ 'abc', 'cde']**/
30. 双重按位操作
// LonghandMath.floor(1.9) === 1 // true// Shorthand~~1.9 === 1 // true
31. 重复字符串多次

为了重复操作相同的字符,我们可以使用 for 循环,但其实还有一种简便的方法。

//longhand let test = ''; for(let i = 0; i < 5; i ++) {   test += 'test '; } console.log(str); // test test test test test //shorthand 'test '.repeat(5);
32. 查找数组的最大值和最小值
const arr = [1, 2, 3]; Math.max(…arr); // 3Math.min(…arr); // 1
33. 获取字符串的字符
let str = 'abc';//Longhand str.charAt(2); // c//Shorthand str[2]; // c
34. 指数幂简化
//longhandMath.pow(2,3); // 8//shorthand2**3 // 8

原文链接:

https://javascript.plainenglish.io/34-javascript-optimization-techniques-to-know-in-2021-d561afdf73c3
(0)

相关推荐

  • 17个你可能还不知道 JS 技巧

    17个你可能还不知道 JS 技巧 原创前端小智2020-12-14 08:38:20 本文已经过原作者 Rahul 授权翻译! 1.三元运算符 新手 let hungry = true;let eat ...

  • 「简洁代码」20个常用的JavaScript简写技巧

    原创前端小智2021-01-31 11:05:50 作者 | Amitav Mishra 译者 | 清风依旧 策划 | 田晓旭 本文发布在 jscurious.com 任何编程语言的简写技巧都能够帮助 ...

  • JS 语法 ES6、ES7、ES8、ES9、ES10、ES11、ES12新特性

    大前端技术之路 14篇原创内容 公众号 新特性 ES6(2015) 1. 类(class) class Man {   constructor(name) {     this.name = '小豪' ...

  • 2021 年需要了解的 34 个 JavaScript 优化技巧

    前端试炼 前天 以下文章来源于掘金开发者社区 ,作者黄龙吐翠 掘金开发者社区掘金,一个帮助开发者成长的技术社区 原文地址:34 JavaScript Optimization Techniques t ...

  • 【珍藏】34种自动控制原理图,不容错过!

    今天送给大家一些我收集的各类电气控制接线图,电子元件工作原理图,还有可控硅整流电路及负反馈调速装置原理等等. 图片都是网络收集的,难免会有一些缺憾,明显错误的直接用画图软件编辑过,希望大家包涵与理解. ...

  • 国家发布新规:2021年起,这7种债务视为无效,欠债人不要错过

    欠债还钱,天经地义!这是中国的传统美德,本着人与人之间的互相信任,和利益共存,现在人们借钱越来越容易了. 而且很多不想麻烦亲朋好友的,还可以用利息去银行或各种贷款公司借钱,只要能在规定时间内还清就可以 ...

  • 译文:优化JS代码的34种方法(下)

    原文链接:https://medium.com/javascript-in-plain-english/34-javascript-optimization-techniques-to-know-in ...

  • 译文:优化JS代码的34种方法(上)

    原文链接: https://medium.com/javascript-in-plain-english/34-javascript-optimization-techniques-to-know-i ...

  • 写好行书,先明白着34种变化

    2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ........................ 23 24 25 26 27 28 29 ...

  • UC头条:34种临床常用急救药品的使用(更新版)

    急救药物在临床工作中应用非常广泛,特别是在抢救病人时,每一个医务人员需要熟记的各种抢救药物,小编为大家今天整理一下,需要每一位小伙伴掌握并牢记于心,让抢救药物使用得心应手. 一 心血管类药物 1 肾上 ...

  • 行书的34种变化

    高效学书法 最专业的书法学习号.收录数万幅历代碑帖,孤本珍本.关注后千集书法教学视频,历届国家级书法展全集,五千集百家讲坛 16篇原创内容 公众号 2 3 4 5 6 7 8 9 10 11 12 1 ...

  • 揭秘34种常用香料的名称与用途

    香料在应用中分君.臣.佐使三者关系搭配.君料即主料,主料的选择是针对烹饪的食材最为合适的,是去腥.去异.赋味效果最佳的,主料在香料配伍中用量也是最大的.臣料即辅料,是用来辅助君料进一步的去腥增香,弥补 ...