DEV Community

Discussion on: 5 things I learnt during my latest Javascript Code Kata

Collapse
 
acthp profile image
acthp

extra [] on this example:

let [[a,b]] = 'ABC';

should be just

let [a,b] = 'ABC';