티스토리 뷰
반응형
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script>
var test3d = [
[1,2,3],
[4,5,6],
[7,8,9],
[10,11,12]
];
//세로 더하기
result =
test3d.reduce(function(a,b){ //a에 차례대로 b를 더할건데.
//reduce 처음 실행 시 a= [1,2,3] b=[4,5,6]
return(
a.map(function(i,index){ //a.map으로 i,index만큼 회전할것.
//[1,2,3].map(i,index)
//i = 1 index 0
console.log(i); //여기서 찍어보면 1,2,3,5,7,9,12,15,18 이 찍힘
i+=b[index];
//i+=b[0~] = i+b[0] = 1+4
console.log("i: ",i, "b[index]: ", b[index]);
//5,7,9,12,15,18,22,26,30 이 출력됨
//첫번쨰 :1+4, 2+5, 3+6,
//두번째: 5+7, 7+8, 9+9
//세번째:12+10, 15+11, 18+12
return i; //결국 마지막 리턴값은 //22,26,30으로 리턴하는것
})
)
});
console.log(result);
</script>
</head>
<body>
</body>
</html>
반응형
'HTML&CSS&Javscript&Jquery' 카테고리의 다른 글
190826 마우스 이벤트 (0) | 2019.08.26 |
---|---|
190812 foreach 예제 (0) | 2019.08.23 |
190819 reduce (0) | 2019.08.23 |
190819 map 예제 (0) | 2019.08.23 |
190822 회원가입/로그인 Javascript로 구현하기 (0) | 2019.08.23 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 인텔리제이
- 정규식 한글만
- no getter for property named
- SpringXmlModelInspection
- Regex
- 정규식 특수문자
- select제어
- JSON
- jQuery
- 엑셀다운로드
- POI EXCEL
- spring 엑셀
- PageNotFound - No mapping for GET
- 정규식
- JSON날짜
- poi
- 공백찾기
- 이메일 정규식
- 계좌번호정규식
- Spring
- ''찾기
- poi 엑셀
- Failed to load resource: the server responded with a status of 404 (Not Found)
- IntelliJ #gradle #tomcat #spring #springmvc
- spring error #
- mybatis
- JSON파싱
- js
- 정규식 숫자만
- selectbox
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함