Silver Library (Archived)
JS - Array, call back function, scope chain 본문
1. https://developer.mozilla.org/ko/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/Reduce
2. https://ko.wikipedia.org/wiki/%EC%9E%AC%EA%B7%80
3. https://im-developer.tistory.com/135
5. https://stackoverflow.com/questions/1047454/what-is-lexical-scope
6. https://ljtaek2.tistory.com/145
7. https://ljtaek2.tistory.com/140
- Callback function 은 함수 내부의 함수를 의미.
- Lexical environment 는, function 이 claim 된 그 시점에서 해당 function 은 무조건 global (window) 객체를 scoping 하고 있다는 사실.
- class 에서 언급되는 method 들은 (forEach, map, filter 등) 반복하되, 새로운 배열로 호출한다가 특징.
- 그리고, 원본 배열에는 변화가 없음.
The JavaScript splice() method modifies an array. It is used to add new elements to an array or remove or change existing ones.
...
splice() accepts three parameters:
- The index number to start at (required)
- The number of items in the array you want to remove (optional)
- Items to add to the list (optional)
https://developer.mozilla.org/ko/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/splice
And what is item? This topic belongs to array.
https://developer.mozilla.org/ko/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array
etc.
'CS Library' 카테고리의 다른 글
이 카테고리의 개요. (0) | 2021.10.22 |
---|---|
점근 표기법 (Big-O 표기법) 과 알고리즘 (0) | 2021.10.22 |
JS - Enumerable, 그리고 configurable (0) | 2021.07.21 |
[JS] node.js 의 module 에 대하여 (0) | 2021.07.20 |
반드시 복습 해야 할 개념 (amidst JS 자료구조) (0) | 2021.07.10 |