文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

JavaScript 简写技巧有哪些

2023-07-02 11:08

关注

今天小编给大家分享一下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

简写写法:

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

// 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 ✨//=> ????//=> ????//=> ????//=> ????

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"

补充几点

箭头函数:

如果你不需要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";

以上就是“JavaScript 简写技巧有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯