Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c6b7b commit 43b8514Copy full SHA for 43b8514
βREADME.md
@@ -216,6 +216,23 @@ console.log('μλμ°¨', car)
216
217
λ°°μ΄μ ꡬ쑰 λΆν΄ν΄λ΄ μλ€.
218
219
+π μλ리μ€: λ°°μ΄ `arr` μ 첫 λ²μ§Έμ μΈ λ²μ§Έ μμλ₯Ό κ°κ° `first` μ `third` λ³μμ ν λΉ λ° μ μΈνμΈμ.
220
+
221
+### λΆβνΈ
222
223
+```js
224
+const arr = [1, 2, 3, 4]
225
+const first = arr[0] // μ’ λ μ¬ννκ² μλ κΉμ?
226
+const third = arr[2] // μΈλ±μ€λ‘ μ κ·Όνμ§ μμΌλ©΄μμ
227
+```
228
229
+### νΈβμ β
230
231
232
233
+const [first, , third] = arr // μ’μ΅λλ€. π
234
235
236
---
237
238
# Rest Parameters
0 commit comments