I have code like this in my code:
let [a, b, c, d, e] = await ponent.getState.call(game.gameId);
Variables b
, c
, e
used below in code but not a
and d
. In the same time I have eslint check that marks unused variables.
Is there any way to write destruction more correct to resolve this issue? I know about esling-disable-line no-unused
but prefer to avoid it.
I have code like this in my code:
let [a, b, c, d, e] = await ponent.getState.call(game.gameId);
Variables b
, c
, e
used below in code but not a
and d
. In the same time I have eslint check that marks unused variables.
Is there any way to write destruction more correct to resolve this issue? I know about esling-disable-line no-unused
but prefer to avoid it.
let [, b, c, , e] =
– ASDFGerte
Commented
Jun 29, 2018 at 6:05
Replace it with empty placeholders:
let [, b, c, , e] = await ponent.getState.call(game.gameId);