Tutoriel JavaScript : Comment créer une liste à l'aide d'une matrice
P粉617237727
2023-09-06 09:54:44
<p><strong>我有一个像这样的数组</strong></p>
<pre class="brush:php;toolbar:false;">const input_array= [
["noir", "bleu"],
["grand", "moyen"],
["a", "b", "c"]
//... est-ce dynamique, peut-on ajouter plusieurs lignes
];≪/pré>
<p><strong>我该如何得到一个像这样的数组:</strong></p>
<pre class="brush:php;toolbar:false;">const finallist = [
["noir", "grand", "a"],
["noir", "grand", "b"],
["noir", "grand", "c"],
["noir", "moyen", "a"],
["noir", "moyen", "b"],
["noir", "moyen", "c"],
["bleu", "grand", "a"],
["bleu", "grand", "b"],
["bleu", "grand", "c"],
["bleu", "moyen", "a"],
["bleu", "moyen", "b"],
["bleu", "moyen", "c"],
]≪/pré>
<p><strong>请记住input_array是动态的</strong></p>
<p><strong>请告诉我如何做到这一点</strong></p>
Vous pouvez faire quelque chose comme ceci :
Jetez un œil à ceci, cela pourrait aider :