일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 가상사설망
- anaconda
- keytool
- 안좋은습관10가지
- 해시함수
- CSS #flex
- javascript #prototype # array # find()
- SSL인증서
- behaviorsubject
- securitykey
- guide
- 요구사항정의서 #기획 #UI/UX기획
- Vue
- nodejs
- Storyboard
- PublicKey
- passport.js
- angular
- 웹기획
- webpack
- Ke
- privateKey
- Git
- TensorFlow
- Javascript #MDN #Webs #Docs
- 일기
- es5 #es6
- typescript
- CSS #pseudo-classes
- tsotry
- Today
- Total
목록개발노트/Javascript (17)
민자의 지식창고
https://startup-cto.net/10-bad-typescript-habits-to-break-this-year/ 10 bad TypeScript habits to break this year TypeScript and JavaScript have steadily evolved over the last years, and some of the habits we built over the last decades have become obsolete. Some might never have been meaningful. Here's a list of 10 habits that we all should break. startup-cto.net 원본은 위의 링크를 따라가면 됩니다. Typescript를..
Async와 Sync Sync : 실행순서를 순서적(절차적)으로 수행을 합니다. Async : Async는 전 명령의 수행이 끝나지 않아도, 다음 명령을 실행을 합니다. Javascript에서 왜 Async가 중요한가? javascript는 다른언어와 다르게 단일 스레드로 동작합니다. 단일 스레드는 하나의 스레드가 모든 명령을 처리 해야 하기때문에, 연산이 많은 로직을 처리할때 계속 Waiting하는 이슈가 생기게 됩니다. 그렇기 때문에 Async(비동기적처리)를 통해서 시간이 많이 걸리는 연산을 Background로 처리하고,다른 작업을 먼저 수행할수 있도록 합니다. ex> setTimeout() Callback Javascript에서는 함수도 객체로 판단하여, Parameter로 넘길수가 있다. 넘겨..
2021.04.12 - [개발노트/Javascript] - Array.prototype.filter() Array.prototype.filter() 시작하며... map()에 이어 이번에는 filter에 대해 보겠습니다. 조건문에 익숙해졌는데 아래 방법도 많이 써서 익숙해지도록 해야겠습니다. 2021.04.08 - [개발노트/Javascript] - Array-prototype.map() 본론.. laheepapa.tistory.com find() 메소드는 주어진 판별 함수를 만족하는 첫번쨰 요소의 값을 반환합니다. 그런 요소가 없으면, undefined를 반환합니다. const values = [5,12,8,9]; const found = values.find(el => el>10); // found ..