일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- NoSQL
- 제로초예제
- mongo
- 시퀄라이즈
- mongoose
- component
- React Component
- nodejs교과서
- 리액트
- MongoDB
- NPM
- sequelize
- node
- 리액트스타디
- express-generator
- sementicversion
- npm명령어
- 클래스컴포넌트
- React
- 시퀄라이즈공부
- 리액트컴포넌트
- 리액트기초
- nodeJS
- Today
- Total
목록분류 전체보기 (120)
개발노트
해외 코드포스(codeforces) http://www.codeforces.com Codeforces codeforces.com 탑코더(Top corder) https://www.topcoder.com 릿코드(LeetCode) https://leetcode.com LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 코드셰프(codechef) https://www...
// array Like 객체 var a = document.qeurySelectorAll('*'); a.slice(1) //안됨! // array의 slice를 담아서 call로 사용 var slice = Array.prototype.slice; slice.call(a, 2); //a가 this 역할 한다고 보면된다
regexper.com/ Regexper regexper.com 정규식시각화!
function f3 ( f ) { return f(); } 인자로 함수를 받아서 return 하면서 함수를 실행 함수내부에서 함수를평가해서 함수를 리턴 함수를리턴하는 함수 add_maker 일급함수, 클로저 function add_maker( ) { return function(){ }; } function add_maker( a ) { return function( b ){ return a+b; }; } var add10 = add_maker(10); // 1. 이걸실행시키면 var add10 = function( b ){ // 2. 함수를 리턴해주니까 함수가 담김 !! return a+b; }; add10(20); // 3. 함수 실행. 2의 리턴된 함수를 클로저 임 add_maker ( a ) {..