I've to declare some variables and want to minify the code. Here is my current code:
let a = [0,0,0,0,0,0,0,0,0,0];
let b = [0,0,0,0,0,0,0,0,0,0];
let c = [0,0,0,0,0,0,0,0,0,0];
Is there a way to minify the code?
I tried the following, but it doesn't work:
  let a = b = c = [0,0,0,0,0,0,0,0,0,0];
or
  let a, b, c = [0,0,0,0,0,0,0,0,0,0];
or
  let a = [0,0,0,0,0,0,0,0,0,0];
  let b = a; // b becomes a pointer to "a"
  let c = a;
