10 个超棒的 JavaScript 简写技巧

开始吧!

1. 合并数组

普通写法:

我们通常使用Array中的concat()方法合并两个数组。用concat()方法来合并两个或多个数组,不会更改现有的数组,而是返回一个新的数组。请看一个简单的例子:

let apples = ['', ''];let fruits = ['', '', ''].concat(apples);console.log( fruits );//=> ['', '', '', '', '']

简写方法:

我们可以通过使用ES6扩展运算符(...)来减少代码,如下所示:

let apples = ['', ''];let fruits = ['', '', '', ...apples];  // <-- hereconsole.log( fruits );//=> ['', '', '', '', '']

得到的输出与普通写法相同。

2. 合并数组(在开头位置)

普通写法:

假设我们想将apples数组中的所有项添加到Fruits数组的开头,而不是像上一个示例中那样放在末尾。我们可以使用Array.prototype.unshift()来做到这一点:

let apples = ['', ''];let fruits = ['', '', ''];// Add all items from apples onto fruits at startArray.prototype.unshift.apply(fruits, apples)console.log( fruits );//=> ['', '', '', '', '']

现在红苹果和绿苹果会在开头位置合并而不是末尾。

简写方法:

我们依然可以使用ES6扩展运算符(...)缩短这段长代码,如下所示:

let apples = ['', ''];let fruits = [...apples, '', '', ''];  // <-- hereconsole.log( fruits );//=> ['', '', '', '', '']

3. 克隆数组

普通写法:

我们可以使用Array中的slice()方法轻松克隆数组,如下所示:

let fruits = ['', '', '', ''];let cloneFruits = fruits.slice();console.log( cloneFruits );//=> ['', '', '', '']

简写方法:

我们可以使用ES6扩展运算符(...)像这样克隆一个数组:

let fruits = ['', '', '', ''];let cloneFruits = [...fruits];  // <-- hereconsole.log( cloneFruits );//=> ['', '', '', '']

4. 解构赋值

普通写法:

在处理数组时,我们有时需要将数组“解包”成一堆变量,如下所示:

let apples = ['', ''];let redApple = apples[0];let greenApple = apples[1];console.log( redApple ); //=> console.log( greenApple ); //=>

简写方法:

我们可以通过解构赋值用一行代码实现相同的结果:

let apples = ['', ''];let [redApple, greenApple] = apples;  // <-- hereconsole.log( redApple );    //=> console.log( greenApple );  //=> 

5. 模板字面量

普通写法:

通常,当我们必须向字符串添加表达式时,我们会这样做:

// Display name in between two stringslet name = 'Palash';console.log('Hello, ' name '!');//=> Hello, Palash!// Add & Subtract two numberslet num1 = 20;let num2 = 10;console.log('Sum = ' (num1 num2) ' and Subtract = ' (num1 - num2));//=> Sum = 30 and Subtract = 10

简写方法:

通过模板字面量,我们可以使用反引号(),这样我们就可以将表达式包装在${...}`中,然后嵌入到字符串,如下所示:

// Display name in between two stringslet name = 'Palash';console.log(`Hello, ${name}!`);  // <-- No need to use   var   anymore//=> Hello, Palash!// Add two numberslet num1 = 20;let num2 = 10;console.log(`Sum = ${num1   num2} and Subtract = ${num1 - num2}`);//=> Sum = 30 and Subtract = 10

6. For循环

普通写法:

我们可以使用for循环像这样循环遍历一个数组:

let fruits = ['', '', '', ''];// Loop through each fruitfor (let index = 0; index < fruits.length; index ) { console.log( fruits[index] ); // <-- get the fruit at current index}//=> //=> //=> //=>

简写方法:

我们可以使用for...of语句实现相同的结果,而代码要少得多,如下所示:

let fruits = ['', '', '', ''];// Using for...of statement for (let fruit of fruits) {  console.log( fruit );}//=> //=> //=> //=> 

7. 箭头函数

普通写法:

要遍历数组,我们还可以使用Array中的forEach()方法。但是需要写很多代码,虽然比最常见的for循环要少,但仍然比for...of语句多一点:

let fruits = ['', '', '', ''];// Using forEach methodfruits.forEach(function(fruit){ console.log( fruit );});//=> //=> //=> //=>

简写方法:

但是使用箭头函数表达式,允许我们用一行编写完整的循环代码,如下所示:

let fruits = ['', '', '', ''];fruits.forEach(fruit => console.log( fruit ));  // <-- Magic ✨//=> //=> //=> //=> 

大多数时候我使用的是带箭头函数的forEach循环,这里我把for...of语句和forEach循环都展示出来,方便大家根据自己的喜好使用代码。

8. 在数组中查找对象

普通写法:

要通过其中一个属性从对象数组中查找对象的话,我们通常使用for循环:

let inventory = [ {name: 'Bananas', quantity: 5}, {name: 'Apples', quantity: 10}, {name: 'Grapes', quantity: 2}];// Get the object with the name `Apples` inside the arrayfunction getApples(arr, value) { for (let index = 0; index < arr.length; index ) { // Check the value of this object property `name` is same as 'Apples' if (arr[index].name === 'Apples') { //=> // A match was found, return this object return arr[index]; } }}let result = getApples(inventory);console.log( result )//=> { name: 'Apples', quantity: 10 }

简写方法:

哇!上面我们写了这么多代码来实现这个逻辑。但是使用Array中的find()方法和箭头函数=>,允许我们像这样一行搞定:

// Get the object with the name `Apples` inside the arrayfunction getApples(arr, value) {  return arr.find(obj => obj.name === 'Apples');  // <-- here}let result = getApples(inventory);console.log( result )//=> { name: 'Apples', quantity: 10 }

9. 将字符串转换为整数

普通写法:

parseInt()函数用于解析字符串并返回整数:

let num = parseInt('10')console.log( num ) //=> 10console.log( typeof num ) //=> 'number'

简写方法:

我们可以通过在字符串前添加 前缀来实现相同的结果,如下所示:

let num =  '10';console.log( num )           //=> 10console.log( typeof num )    //=> 'number'console.log(  '10' === 10 )  //=> true

10. 短路求值

普通写法:

如果我们必须根据另一个值来设置一个值不是falsy值,一般会使用if-else语句,就像这样:

function getUserRole(role) { let userRole; // If role is not falsy value // set `userRole` as passed `role` value if (role) { userRole = role; } else { // else set the `userRole` as USER userRole = 'USER'; } return userRole;}console.log( getUserRole() ) //=> 'USER'console.log( getUserRole('ADMIN') ) //=> 'ADMIN'

简写方法:

但是使用短路求值(||),我们可以用一行代码执行此操作,如下所示:

function getUserRole(role) {  return role || 'USER';  // <-- here}console.log( getUserRole() )         //=> 'USER'console.log( getUserRole('ADMIN') )  //=> 'ADMIN'

基本上,expression1 || expression2被评估为真表达式。因此,这就意味着如果第一部分为真,则不必费心求值表达式的其余部分。

补充几点

箭头函数

如果你不需要this上下文,则在使用箭头函数时代码还可以更短:

let fruits = ['', '', '', ''];fruits.forEach(console.log);

在数组中查找对象

你可以使用对象解构和箭头函数使代码更精简:

// Get the object with the name `Apples` inside the arrayconst getApples = array => array.find(({ name }) => name === 'Apples');let result = getApples(inventory);console.log(result);//=> { name: 'Apples', quantity: 10 }

短路求值替代方案

const getUserRole1 = (role = 'USER') => role;const getUserRole2 = role => role ?? 'USER';const getUserRole3 = role => role ? role : 'USER';

编码习惯

最后我想说下编码习惯。代码规范比比皆是,但是很少有人严格遵守。究其原因,多是在代码规范制定之前,已经有自己的一套代码习惯,很难短时间改变自己的习惯。良好的编码习惯可以为后续的成长打好基础。下面,列举一下开发规范的几点好处,让大家明白代码规范的重要性:

  • 规范的代码可以促进团队合作。
  • 规范的代码可以减少 Bug 处理。
  • 规范的代码可以降低维护成本。
  • 规范的代码有助于代码审查。
  • 养成代码规范的习惯,有助于程序员自身的成长。

我自己在看的是《阿里前端开发规范》,里面的代码规范很全,并且基本通用,看完很受用。篇幅原因,下面以截图展示目录及部分内容,完整PDF私信我“代码”即可免费获取。

目录

一、编码规范

二、Vue项目规范

以上即是《阿里前端开发规范》,需要的小伙伴请私信我“代码”即可免费获取。

最后,我想借用一段话来作结尾:

代码之所以是我们的敌人,是因为我们中的许多程序员写了很多很多不好的代码。如果我们没有办法摆脱,那么最好尽全力保持代码简洁。
如果你喜欢写代码——真的,真的很喜欢写代码——你代码写得越少,说明你的爱意越深。

(0)

相关推荐

  • Nice!JavaScript基础语法知识都在这儿了

    好好学习,天天向上 本文已收录至我的Github仓库DayDayUP:github.com/RobodLee/DayDayUP,欢迎Star ⭐⭐⭐⭐⭐转载请注明出处!⭐⭐⭐⭐⭐ 链接:https:/ ...

  • 实操ES6之Promise

    箭头函数和this 写Promise的时候,自然而然会使用箭头函数的编写方式.箭头函数就是.Neter们熟知的lambda函数,已经被大部分主流语言支持,也受到了广大码农的交口称赞,但是Jser们却会 ...

  • 面试官在“逗”你系列:到底应该怎么爬楼梯?!

    直奔主题 算法题是在面试过程中考察候选人逻辑思维能力.手写代码能力的一种方式,因为有一句古话说的好:"说一千道一万,不如写段代码看一看". 今天我们就来个单刀直入,直奔主题,从一个 ...

  • promise的常用情况

    因为js是单线程的,所以一旦代码中有报错,就不会执行下面的了,如下333就未打印 console.log(111) throw Error(222) console.log(333) 好像与promi ...

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

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

  • TypeScript---数据类型

    TypeScript---数据类型 //字符串 let str: string = "你好ts" let str1: string = "你好typescript&quo ...

  • ES6 常用特性总结

    一.ES6 基本认识 1.什么是 ES6? ES6 指的是 ECMAScript 6.0,是JavaScript 语言的一个标准.其目标是使JavaScript 可以用来编写复杂的大型的应用程序,成为 ...

  • JavaScript基本语法(全)

    JavaScript JavaScript 是世界上最流行的语言之一,是一种运行在客户端的脚本语言 (Script 是脚本的意思) 脚本语言:不需要编译,运行过程中由 js 解释器( js 引擎)逐行 ...

  • 排序算法的Javascript实现

    排序算法的Javascript实现

  • 「学习笔记」JavaScript基础

    前言 最近一直在跟着黑马教程学习JavaScript内容,遂把这一阶段的学习内容整理成笔记,巩固所学知识,同时也会参考一些博客,书籍上的内容,查漏补缺,给自己充充电

  • JavaScript中的函数

    概念 函数就是封装了一段可被重复调用执行的代码块. 函数的使用分为两步:声明函数和调用函数. 函数声明 function fn() { console.log("hi") } 注意 ...