JavaScript/javascript 기초 공부하기
2020. 1. 19.
자바스크립트 내장 함수 정리 (forEach, map, indexOf, findIndex, find, filter, splice, slice, concat, join, reduce)
forEach 자바의 향상된 for문과 비슷하며 자바스크립트 for of 처럼 배열의 값을 반복으로 출력할때 사용한다 주로 for of 보다는 forEach를 활용해서 출력한다. const superheroes = ['아이언맨', '캡틴 아메리카', '토르', '닥터 스트레인지']; superheroes.forEach(hero => { console.log(hero); }); map 배열안의 원소들을 변환할때 사용되며 map을 사용하면 새로운 배열이 만들어진다. const array = [1, 2, 3, 4, 5, 6, 7, 8]; const square = n => n * n; const squared = array.map(square); console.log(squared); findIndex 배열안..