1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
---
title: Array.prototype.flat()
slug: Web/JavaScript/Reference/Global_Objects/Array/flat
tags:
- Array
- JavaScript
- Method
- Prototype
- Reference
- flat
translation_of: Web/JavaScript/Reference/Global_Objects/Array/flat
---
<div>{{JSRef}}</div>
<div>Phương thức <code><strong>flat()</strong></code> trả về một mảng mới. Trong đó, tất cả các phần tử của mảng con được gán ngược vào nó bằng cách đệ quy lên đến độ sâu đã chỉ định.</div>
<p>{{EmbedInteractiveExample("pages/js/array-flat.html")}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox notranslate"><var>var newArray = arr</var>.flat(<em>[depth]</em>);</pre>
<h3 id="Parameters">Parameters</h3>
<dl>
<dt><code>depth</code> {{optional_inline}}</dt>
<dd>Chỉ định độ sâu của mảng kết quả cuối cùng. Mặc định là 1</dd>
</dl>
<h3 id="Return_value">Return value</h3>
<p>Một mảng mới với các phần tử của mảng con được nối với nó.</p>
<h2 id="Alternatives">Alternatives</h2>
<h3 id="reduce_and_concat">reduce and concat</h3>
<pre class="brush: js notranslate">const arr = [1, 2, [3, 4]];
// Trả về mảng chỉ có 1 level
arr.flat();
// Nó ngang với việc sử dụng reduce
arr.reduce((acc, val) => acc.concat(val), []);
// [1, 2, 3, 4]
// hoặc decomposition syntax
const flattened = arr => [].concat(...arr);
</pre>
<h3 id="reduce_concat_isArray_recursivity">reduce + concat + isArray + recursivity</h3>
<pre class="brush: js notranslate">const arr = [1, 2, [3, 4, [5, 6]]];
// ?Sử dụng reduce, concat và deep level
function flatDeep(arr, d = 1) {
return d > 0 ? arr.reduce((acc, val) => acc.concat(Array.isArray(val) ? flatDeep(val, d - 1) : val), [])
: arr.slice();
};
flatDeep(arr, Infinity);
// [1, 2, 3, 4, 5, 6]
</pre>
<h3 id="Use_a_stack">Use a stack</h3>
<pre class="brush: js notranslate">// Sử dụng stack để đệ quy không cần báo deep level
function flatten(input) {
const stack = [...input];
const res = [];
while(stack.length) {
// Lấy gía trị ra khỏi stack
const next = stack.pop();
if(Array.isArray(next)) {
// Gán trở lại arry, không thay đổi giá trị của item đó
stack.push(...next);
} else {
res.push(next);
}
}
// Đảo ngược array để trả về đúng order ban đầu
return res.reverse();
}
const arr = [1, 2, [3, 4, [5, 6]]];
flatten(arr);
// [1, 2, 3, 4, 5, 6]
</pre>
<h3 id="Use_Generator_function">Use Generator function</h3>
<pre class="brush: js notranslate">function* flatten(array, depth) {
if(depth === undefined) {
depth = 1;
}
for(const item of array) {
if(Array.isArray(item) && depth > 0) {
yield* flatten(item, depth - 1);
} else {
yield item;
}
}
}
const arr = [1, 2, [3, 4, [5, 6]]];
const flattened = [...flatten(arr, Infinity)];
// [1, 2, 3, 4, 5, 6]
</pre>
<div class="hidden">
<p>Please do not add polyfills on this article. For reference, please check: <a href="https://discourse.mozilla.org/t/mdn-rfc-001-mdn-wiki-pages-shouldnt-be-a-distributor-of-polyfills/24500">https://discourse.mozilla.org/t/mdn-rfc-001-mdn-wiki-pages-shouldnt-be-a-distributor-of-polyfills/24500</a></p>
</div>
<h2 id="Examples">Examples</h2>
<h3 id="Flattening_nested_arrays">Flattening nested arrays</h3>
<pre class="brush: js notranslate">const arr1 = [1, 2, [3, 4]];
arr1.flat();
// [1, 2, 3, 4]
const arr2 = [1, 2, [3, 4, [5, 6]]];
arr2.flat();
// [1, 2, 3, 4, [5, 6]]
const arr3 = [1, 2, [3, 4, [5, 6]]];
arr3.flat(2);
// [1, 2, 3, 4, 5, 6]
const arr4 = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
arr4.flat(Infinity);
// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
</pre>
<h3 id="Flattening_and_array_holes">Flattening and array holes</h3>
<p>The flat method removes empty slots in arrays:</p>
<pre class="brush: js notranslate">const arr5 = [1, 2, , 4, 5];
arr5.flat();
// [1, 2, 4, 5]
</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('ESDraft', '#sec-array.prototype.flat', 'Array.prototype.flat')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<div>
<p>{{Compat("javascript.builtins.Array.flat")}}</p>
</div>
<h2 id="See_also">See also</h2>
<ul>
<li>{{jsxref("Array.prototype.flatMap()")}}</li>
<li>{{jsxref("Array.prototype.map()")}}</li>
<li>{{jsxref("Array.prototype.reduce()")}}</li>
<li>{{jsxref("Array.prototype.concat()")}}</li>
</ul>
|