일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- webpack
- scss
- @debug
- S3
- HTMLFormElement
- next.js
- JavaScript
- CA불러오기
- currentTarget
- 자바스크립트
- Sass
- TypeScript
- set-cookie
- goerli
- next-connect
- Codestates
- Blockchain
- methoidID
- Goerlifaucet
- keccak256
- wallet
- 다중서명계약
- 블록체인
- 코딩테스트
- 스마트컨트랙트
- 해쉬테이블
- ts-loader
- incentive
- geth
- 자료구조
- Today
- Total
목록JavaScript (2)
Minwook’s portfolio

1. 반복문 없이 피라미드의 반쪽을 만드려면? let output1 ='' output1 += '*\n' output1 += '**\n' output1 += '***\n' output1 += '****\n' output1 += '*****\n' output1 += '******\n' output1 += '*******\n' output1 += '********\n' output1 += '*********\n' output1 += '**********\n' console.log(output1); * ** *** **** ***** ****** ******* ******** ********* ********** 2. 중첩반복문을 사용하여 1.의 코드를 재현 let output2 = '' //초기값 for(l..

고차함수란? 함수를 인자로 전달받거나 함수를 결과로 반환하는 함수 1. map() 배열내부를 돌면서 콜백함수를 실행시켜주는 새로운 배열을 반환하는 매서드입니다. let arr = [1,2,3,4]; let arrx2 = arr.map(el => el*2); console.log(arrx2); //[2, 4, 6, 8] 2. forEach() forEach 또한 map과 동일하게 배열내부를 돌면서 각 인자에 2를 곱하는 콜백함수를 실행시켜줍니다. map과 비교해서 어떤 점이 다를까요? 같은 코드를 매서드만 바꿔보겠습니다. let arr= [1,2,3,4]; let arrx2 = arr.forEach(el => el*2); console.log(arrx2); //undefined 이와같이 콘솔로 찍어보면 u..