JavaScript-Tutorial: So erstellen Sie eine Liste mithilfe einer Matrix
P粉617237727
2023-09-06 09:54:44
<p><strong>我有一个像这样的数组</strong></p>
<pre class="brush:php;toolbar:false;">const input_array= [
["schwarz", "blau"],
["groß", "mittel"],
["a", "b", "c"]
//... ist es dynamisch, es können viele Zeilen hinzugefügt werden
];</pre>
<p><strong>我该如何得到一个像这样的数组:</strong></p>
<pre class="brush:php;toolbar:false;">const finallist = [
["schwarz", "groß", "a"],
["schwarz", "groß", "b"],
["schwarz", "groß", "c"],
["schwarz", "mittel", "a"],
["schwarz", "mittel", "b"],
["schwarz", "mittel", "c"],
["blau", "groß", "a"],
["blau", "groß", "b"],
["blau", "groß", "c"],
["blau", "mittel", "a"],
["blau", "mittel", "b"],
["blau", "mittel", "c"],
]</pre>
<p><strong>请记住input_array是动态的</strong></p>
<p><strong>请告诉我如何做到这一点</strong></p>
你可以像这样做:
看一下这个,可能会有帮助: