관리 메뉴

Jerry

TIL_ 오늘 공부한 내용_#1 본문

자기 성찰/TIL

TIL_ 오늘 공부한 내용_#1

juicyjerry 2022. 1. 4. 00:00
반응형

 

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