일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tensorflow
- DANAWA
- TypeScript
- Agile
- Scrum
- Crawling
- algorithm
- opencv
- analyzing
- ECS
- AWS
- pandas
- data analyze
- 다나와
- javascript
- matplotlib
- angular
- 자바스크립트
- keras
- 크롤링
- Method
- 애자일
- adaptive life cycle
- instance
- python
- visualizing
- data
- Project
- webcrawling
- 프로젝트
Archives
- Today
- Total
목록Front-end (2)
LiJell's 성장기
The Stack
Front-end and Back-end of a web application The Concept of Web Stacks Stack is not a technical term It is a loose term and can be very fluid and sometimes even subjective Angular is a TypeScript based Front-End vs. Back-End The fridge room could be seen as the DATABASE or a series of data resources The kitchen is the WEB APPLICATION SERVER The dinning room is a bundle of tech that contains prima..
Front-End/Angular & TypeScript
2022. 5. 26. 22:31

const cannot be changed let can be changed later const a = 5; const b = 2; let myName = "Hanju"; console.log(a + b); console.log(a * b); console.log(a / b); console.log("Hello! " + myName); myName = "LiJell"; console.log("your new name is " + myName);
Front-End/JavaScript
2022. 5. 13. 17:56