Javascript

⭐️ 데이터 유형을 확인하기 위한 여러 가지 유틸리티 함수export const typeOf = (data) => { return Object.prototype.toString.call(data).slice(8, -1).toLowerCase(); }; export const isNull = (data) => typeOf(data) === "null"; export const isUndefined = (data) => typeOf(data) === "undefined"; export const isNumber = (data) => typeOf(data) === "number" && !isNaN(data); export const isBigInt = (data) => typeOf(data) === "bigi..
· Javascript
forEach forEach() 메서드는 주어진 함수를 배열 요소 각각에 대해 실행합니다. 원본을 변경 시킨다. 구문 arr.forEach(callback(currentvalue[, index[, array]])[, thisArg]) 매개변수 callback 각 요소에 대해 실행할 함수. 다음 세 가지 매개변수를 받습니다. currentValue 처리할 현재 요소. index 처리할 현재 요소의 인덱스. array forEach()를 호출한 배열. thisArg callback을 실행할 때 this로 사용할 값. 반환값 undefined const arr = ['apple', 'kiwi', 'grape', 'orange']; arr.forEach((item, index) => { console.log("..
HYEBEEN
'Javascript' 카테고리의 글 목록 (2 Page)