What is the value of b in the following code?
[a, b] = [1,2,3,4]
Is it any different from
[a,, b] = [1,2,3,4]
?