일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pandas
- visualizing
- python
- javascript
- adaptive life cycle
- webcrawling
- keras
- 다나와
- Agile
- angular
- 크롤링
- Scrum
- data
- ECS
- 애자일
- TypeScript
- DANAWA
- Crawling
- 프로젝트
- tensorflow
- Project
- analyzing
- data analyze
- 자바스크립트
- algorithm
- instance
- opencv
- matplotlib
- AWS
- Method
- Today
- Total
목록array (2)
LiJell's 성장기
Iterating through String Arrays We can use the *ngFor command in the HTML file to loop through arrays declared in the component. ng is stand for next generation Component colors:string[] = ['red', 'blue', 'green', 'purple']; HTML {{color}} The result in your browser red blue green purple Iterating with Indices Having access to an index within each iteration of the loop Fruit {{ i }} is {{ fruit ..

Array const daysOfWeek = ['mon','tue','wed','thu','fri','sat']; // Get Item from Array console.log(daysOfWeek[4]); // Add one more day to the array daysOfWeek.push('sun'); console.log(daysOfWeek); Object const player = { name: "LiJell", points: 10, fat: true, }; console.log(player); console.log(player.name); console.log(player["points"]); const player = { name: "LiJell", points: 10, fat: true, }..