일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ART_Cinema
- Node.js
- Algorithm
- 알고리즘
- MyPick31
- 예술영화추천
- 장고 프로젝트 순서
- Exercism
- 장고 개발 순서
- 프로젝트
- 북마크만들기
- python
- 장고 프로젝트
- JavaScript
- 개발
- join()
- 독립영화플랫폼
- 타사인증
- Blog
- passport.js
- 자바스크립트
- MYSQL
- Django Blog
- Django
- mongodb
- Bookmark
- til
- 파이썬 웹프로그래밍 장고
- 북마크앱
- 장고
- Today
- Total
목록JavaScript (13)
Juni_Dev_log
▶ Word Count 📌 Problem Introduction Given a phrase, count the occurrences of each word in that phrase. For the purposes of this exercise you can expect that a word will always be one of: A number composed of one or more ASCII digits (ie "0" or "1234") OR A simple word composed of one or more ASCII letters (ie "a" or "they") OR A contraction of two simple words joined by a single apostrophe (ie "..
▶ Hamming 🧬 📌 (Problem) Introduction Calculate the Hamming Distance between two DNA strands. Your body is made up of cells that contain DNA. Those cells regularly wear out and need replacing, which they achieve by dividing into daughter cells. In fact, the average human body experiences about 10 quadrillion cell divisions in a lifetime! When cells divide, their DNA replicates too. Sometimes duri..
코드를 작성하던 도중, == 와 === 의 차이가 갑작스럽게 궁금해졌다. != 와 !== 도 있는 걸로 알고 있는데, 두 연산자의 차이가 무엇일까. 이 글을 읽고서 해당 사진이 완벽하게 이해가 된다면, == 와 ===의 차이를 알게 된 것이다. 📌 '==' 와 '===' 의 차이점 자바스크립트는 엄격한 비교와 유형변환 비교를 모두 지원한다. === 는 변수 유형을 고려하는 반면, ==는 변수 값을 기반으로 유형을 수정한다. ☝ '==' 연산자를 이용하여 서로 다른 유형의 두 변수의 [값] 비교 ✌ '==='는 엄격한 비교를 하는 것으로 알려져 있다 ([값 & 자료형] -> true) 💡 연습 0 == false // true - 0 값은 false 와 동일하기 때문에, fasle 0 === false /..
▶ Leap (Problem) Introduction Given a year, report if it is a leap year. The tricky thing here is that a leap year in the Gregorian calendar occurs: on every year that is evenly divisible by 4 except every year that is evenly divisible by 100 unless the year is also evenly divisible by 400 For example, 1997 is not a leap year, but 1996 is. 1900 is not a leap year, but 2000 is. 윤년을 계산해보는 코드를 작성해보..