웹 풀사이클 데브코스 TIL 18일차
전체 조회 app.get('/youtubers', function(req,res){ let youtubers = {} db.forEach(function(value, key){ youtubers[key] = value }) res.json(youtubers) }) youtuber라는 객체를 만든 후 그곳에 forEach 문으로 값을 넣고 반환한다. forEach 향상된 for문이다. 먼저 배열에서의 활용은 다음과 같다. const arr = [1,2,3,4,5] arr.forEach(function(a, b, c) { console.log(`a: ${a}, b: ${b}, c: ${c}`) }) /* 출력값 a: 1, b: 0, c: 1,2,3,4,5 a: 2, b: 1, c: 1,2,3,..