https://github.com/devbong92/sparta_korean_cuisine
https://github.com/devbong92/sparta_korean_cuisine
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devbong92/sparta_korean_cuisine
- Owner: devbong92
- Created: 2024-07-08T06:06:37.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T06:09:53.000Z (almost 2 years ago)
- Last Synced: 2024-07-08T07:58:54.015Z (almost 2 years ago)
- Language: HTML
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sparta_korean_cuisine
## 데일리 미션 과제
### 한식 메뉴 렌더링 하기 🍚
```
const menuItems = [
{ name: '비빔밥', description: '밥 위에 나물, 고기, 고추장 등을 얹고 비벼 먹는 한국 요리' },
{ name: '김치찌개', description: '김치와 돼지고기 등을 넣고 끓인 한국의 찌개 요리' },
{ name: '불고기', description: '양념한 고기를 구워서 먹는 한국 요리' },
{ name: '떡볶이', description: '떡과 어묵을 고추장 양념에 볶아 만든 한국의 간식' },
{ name: '잡채', description: '당면과 여러 채소, 고기를 볶아 만든 한국 요리' }
];
```
### 주어진 데이터를 사용하여 설명에 “고기”가 포함된 메뉴 항목만 화면에 노출시킵니다.
