I have recently moved to 'airbnb-base' eslint style-guide. There i am get an error when i try to reference the array elements with index eslint(prefer-destructuring).
eg
let a = {};
// get an error saying eslint(prefer-destructuring)
a.b = clients[0];
What is wrong with using accessing Array with index or how is using array destructuring better ?