본문 바로가기

전체 글

(75)
배열함수 예제 공부 // 배열함수 공부const fruts = [  { name: "orange", price: 300 },  { name: "apple", price: 200 },  { name: "lemon", price: 400 },  { name: "banana", price: 500 },];// find 찾기// const item = fruts.find((frut, index) => {//   if (frut.price === 400 && index === 2) {//     return true;//   }//   return false;// });// console.log(item)// findIndex()  원하는 index값을 반환 , 조건을 만족하지 않으면 -1 반환.// const item = frut..
css 미디어 쿼리 디바이스별 width Meta viewport 추가  4개의 반응형  낮은 해상도의 pc , 태블릿 가로 : ~1024px태블릿 가로 : 768px ~ 1023px모바일 가로, 태블릿 : 480px ~767px모바일 : ~ 460px /* PC , 테블릿 가로 (해상도 768px ~ 1023px)*/ @media all and (min-width:768px) and (max-width:1023px) { ...} /* 테블릿 세로 (해상도 768px ~ 1023px)*/ @media all and (min-width:768px) and (max-width:1023px) { ...} /* 모바일 가로, 테블릿 세로 (해상도 480px ~ 767px)*/ @media all and (min-width:480px) and (..
# 7. 프로그래머스 _ 각도기 // 문제 설명 //각에서 0도 초과 90도 미만은 예각, 90도는 직각, 90도 초과 180도 미만은 둔각 180도는 평각으로 분류합니다. 각 angle이 매개변수로 주어질 때 예각일 때 1, 직각일 때 2, 둔각일 때 3, 평각일 때 4를 return하도록 solution 함수를 완성해주세요.예각 : 0 // 제한사항 //0  // 입출력 예 //angle result 70 1 91 3180 4// 내 정답 //function solution(angle) { if (0