为了账号安全,请及时绑定邮箱和手机立即绑定

5 分钟掌握 JavaScript 实用窍门

标签:
AngularJS


1. 删除数组尾部元素

一个简单方法就是改变数组的length值:

1

2

3

4

5

6

7

8

const arr = [11, 22, 33, 44, 55, 66];

// truncanting

arr.length = 3;

console.log(arr); //=> [11, 22, 33]

// clearing

arr.length = 0;

console.log(arr); //=> []

console.log(arr[2]); //=> undefined

2. 使用对象解构(object destructuring)来模拟命名参数

如果需要将一系列可选项作为参数传入函数,你很可能会使用对象(Object)来定义配置(Config)。

1

2

3

4

5

6

7

doSomething({ foo: 'Hello', bar: 'Hey!', baz: 42 });

function doSomething(config) {

  const foo = config.foo !== undefined ? config.foo : 'Hi';

  const bar = config.bar !== undefined ? config.bar : 'Yo!';

  const baz = config.baz !== undefined ? config.baz : 13;

  // ...

}

不过这是一个比较老的方法了,它模拟了 JavaScript 中的命名参数。

在 ES 2015 中,你可以直接使用对象解构:

1

2

3

function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 }) {

  // ...

}

让参数可选也很简单:

1

2

3

function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 } = {}) {

  // ...

}

3. 使用对象解构来处理数组

可以使用对象解构的语法来获取数组的元素:

1

2

const csvFileLine = '1997,John Doe,US,john@doe.com,New York';

const { 2: country, 4: state } = csvFileLine.split(',');

4. 在 Switch 语句中使用范围值

可以这样写满足范围值的语句:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

function getWaterState(tempInCelsius) {

  let state;

  

  switch (true) {

    case (tempInCelsius  0):

      state = 'Solid';

      break;

    case (tempInCelsius > 0 && tempInCelsius  100):

      state = 'Liquid';

      break;

    default:

      state = 'Gas';

  }

  return state;

}

5. await 多个 async 函数

在使用 async/await 的时候,可以使用 Promise.all 来 await 多个 async 函数

1

await Promise.all([anAsyncCall(), thisIsAlsoAsync(), oneMore()])

©著作权归作者所有:来自51CTO博客作者无鳍的鱼的原创作品,如需转载,请注明出处,否则将追究法律责任

J


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消