ArmA 3 SQF Private Array or Keyword?

2020-11-21

ArmA 3 SQF whats wrong with private array?

private ["_var1"];
_var1 = 33;

is performance and readability wise worse than:

private _var1 = 33;

Dedmen: private array wastes performance. while private keyword gains performance