JavaScript6 자바스크립트 트렌드 확인 https://2019.stateofjs.com/ko/ The State of JavaScript 2019 2019.stateofjs.com 대세 react-ts-ject-redux-graphql-express 구성 https://heropy.blog/2019/09/29/svelte/ https://d2.naver.com/helloworld/4007447 2020. 6. 27. JavaScript에서 이벤트 전파를 중단하는 네가지 방법 http://programmingsummaries.tistory.com/313추천 2018. 4. 12. JavaScript Bool을 true 에서 false로 자동으로 바꾸기 var state = true; state = !state; 2014. 7. 9. JavaScript Short-circuiting evaluations JavaScript를 보다 보면 && || 조건이 나오게 되는데일반적인 방식이 아닌 Short Circuiting(짧게 우회)해서 쓰는 방법이 있어 정리를 함 var name = person && person.getName();This code is the same asif(person) {var name = person.getName();} The || operator is used for setting default values.var name = persons_name || "John Doe";The equalant code isif(persons_name) {var name = persons_name;} else {var name = "John Doe";} 참고로 짧게 IF문 사용법은 조건 ? 참.. 2014. 6. 13. 이전 1 2 다음