Comment convertir le tableau converti en chaîne en Array Javasccript

var array = '[[1, 2, 3], [4, 5, 6]]';
JSON.parse(array);
TheRubberDucky