最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Array Destructuring Skipping Values - Stack Overflow

programmeradmin0浏览0评论

My airbnb styleguide told me I should use Array Destructuring for the assignment below.

const splittedArr  = [1, 2, 3, 4, 5]
const result = splittedArr[1];

So I wrote it like this using skipping values , to get the second element.

const splittedArr  = [1, 2, 3, 4, 5]
const [, result] = splittedArr;

const splittedArr = [1, 2, 3, 4, 5]
const result = splittedArr[1];

const [, res] = splittedArr;

console.log(result, res);

My airbnb styleguide told me I should use Array Destructuring for the assignment below.

const splittedArr  = [1, 2, 3, 4, 5]
const result = splittedArr[1];

So I wrote it like this using skipping values , to get the second element.

const splittedArr  = [1, 2, 3, 4, 5]
const [, result] = splittedArr;

const splittedArr = [1, 2, 3, 4, 5]
const result = splittedArr[1];

const [, res] = splittedArr;

console.log(result, res);

But for instance when I have a higher indice to destruct

const splittedArr  = [1, 2, 3, 4, 5]
const result = splittedArr[5];

This would mean I have to write it like

const splittedArr  = [1, 2, 3, 4, 5]
const [,,,, result] = splittedArr;

const splittedArr  = [1, 2, 3, 4, 5]

const result = splittedArr[4];

const [, , , , res] = splittedArr;

console.log(result, res);

Question: Is there a better way to write Array Destructuring with skipping values in JavaScript?

Share Improve this question edited Feb 13, 2021 at 8:43 Aalexander asked Jan 30, 2021 at 10:40 AalexanderAalexander 5,0043 gold badges13 silver badges36 bronze badges 4
  • That's a guideline not a fixed rule. Have a look at the issues for that part of the guide (e.g. Why use prefer-destructuring on arrays? #1791) – Andreas Commented Jan 30, 2021 at 10:56
  • 1 Please use mon sense. It's far uglier to do [,,,,,myvar] = ar than const myvar = ar[5] and any style guide that tells you otherwise is wrong. – 404 Commented Jan 30, 2021 at 16:37
  • 1 Does this answer your question? Object destructuring solution for long arrays? – Nguyễn Văn Phong Commented Jan 31, 2021 at 4:25
  • My question is about Array Destructuring and not Object destructuring as you can see in my title and the title of your prodivded question. – Aalexander Commented Jan 31, 2021 at 7:36
Add a ment  | 

2 Answers 2

Reset to default 10

You could treat the array as object and destructure with the index as key and assign to a new variable name.

const
    array = [37, 38, 39, 40, 41, 42, 43],
    { 5: result } = array;

console.log(result);

Use object-destructuring instead:

const splittedArr  = [1, 2, 3, 4, 5];

const { 1: second, 4: fifth } = splittedArr;

console.log(second, fifth);

发布评论

评论列表(0)

  1. 暂无评论