What's the difference between these two? Example:
$ echo $((1+1)) 2 $ echo $[1+1] 2
As shown here at Chapter 10, Section 2.
$[expression] is deprecated syntax, to accomplish same thing.
$[expression]