유창한 자바스크립트
폐쇄:
being able to reference a specific instance of a local binding in an enclosing scope. A function that references bindings from local scopes around it is called a closure.
순수한 함수
a specific kind of value-producing function that not only has no side effects but also doesn’t rely on side effects from other code—for example, it doesn’t read global bindings whose value might change. A pure function has the pleasant property that, when called with the same arguments, it always produces the same value
배열 메서드
includes()
- 주어진 값이 배열에 존재하는지 확인합니다.shift()
- 배열에서 첫 번째(0 인덱스) 항목을 제거합니다.unshift()
- 배열의 앞쪽(0 인덱스)에 항목을 추가합니다.indexOf()
- 배열을 처음부터 끝까지 검색하고 요청된 값이 발견된 인덱스를 반환합니다.lastIndexOf()
- 끝(마지막 항목)부터 배열을 검색합니다.trim ()
- 문자열의 시작과 끝에서 공백(공백, 줄 바꿈, 탭 및 유사한 문자)을 제거합니다....
스프레드 구문 - 배열을 확장하거나 확장하여 요소를 별도의 인수로 전달합니다.let
항목 of
항목을 사용하여 배열을 반복합니다.for (let item of items) {
console.log(item);
}
수학 개체 함수
Math.floor()
- 내림Math.ceil()
- 반올림Math.round()
- 가장 가까운 정수로 반올림Math.abs()
- 숫자의 절대값을 취하고 음수를 부정합니다.JSON이란 무엇입니까?
직렬화 형식입니다. 직렬화는 단순한 설명으로 변환하는 것을 의미합니다.
JSON 메서드
JSON. parse()
JSON 문자열을 JavaScript 객체로 변환합니다.JSON. stringify()
JavaScript 개체를 JSON 문자열로 변환합니다.그게 80일째다.
나는 내일 책을 계속할 것이다
Reference
이 문제에 관하여(유창한 자바스크립트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mtee/eloquent-javascript-2oba텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)