일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HTTP
- 프로그래머스
- 코드스테이츠
- til
- programmers
- 토익
- 렛츠기릿 자바스크립트
- javascript
- 알고리즘
- 리트코드
- 손에 익히며 배우는 네트워크 첫걸음
- 파이썬
- 타입스크립트
- 정재남
- 리액트
- js
- python
- 타입스크립트 올인원
- 2주 프로젝트
- codestates
- 제로초
- 리덕스
- 타임어택
- 자바스크립트
- 코어 자바스크립트
- 4주 프로젝트
- SQL 고득점 Kit
- 회고
- 백준
- LeetCode
- Today
- Total
Jerry
TIL_ 오늘 공부한 내용_#1 본문
1. https://juicyjerry.tistory.com/253
프로그래머스_programmers_짝수와 홀수
function solution(num) { let answer = 0; if (num % 2 === 0) answer = "Even" else answer = "Odd"; return answer; }
juicyjerry.tistory.com
2. https://juicyjerry.tistory.com/254
TypeError [Error]: Assignment to constant variable.
TypeError [Error]: Assignment to constant variable. MDN의 의하여 TypeError 객체는 아래의 3가지 경우일 때 발생하는 에러의 한 종류다. 함수에 전달된 피연산자 또는 인자가 해당 연산자나 함수가 예상..
juicyjerry.tistory.com
3. https://juicyjerry.tistory.com/255
프로그래머스_programmers_x만큼 간격이 있는 n개의 숫자
function solution(x, n) { let answer = []; ` x 시작 x씩 n번씩 증가 list에 추가 출력 ` let number = x; for (let t = 0; t < n; t = t + 1) { answer.push(number); number += x; } return answer; }
juicyjerry.tistory.com
4. https://juicyjerry.tistory.com/256
[리뉴얼] 렛츠기릿 자바스크립트 #1
1강 팁(Tip) 문법을 완벽히 알려는 것 Nono 적당히~ HTML/CSS도 공부하는걸 추천 초반일수록 돈 아끼려 하지 않고 준비시간을 줄이기 위해 어떤 수를 쓰더라도 그걸 줄이려고 하는걸 추천 에
juicyjerry.tistory.com
5. 잔디심기
https://github.com/JuicyJerry/2022_programmers
GitHub - JuicyJerry/2022_programmers: 2022_programmers_again
2022_programmers_again. Contribute to JuicyJerry/2022_programmers development by creating an account on GitHub.
github.com
'자기 성찰 > TIL' 카테고리의 다른 글
TIL_ 오늘 공부한 내용_#3 (0) | 2022.01.06 |
---|---|
TIL_ 오늘 공부한 내용_#2 (0) | 2022.01.05 |
til #27 (0) | 2021.08.18 |
til #26 (0) | 2021.08.17 |
til #24 (0) | 2021.08.10 |