일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 방이편백육분삼십
- 공무원
- 성북구맛집
- ubuntu자바설치
- npm
- springboot
- 돈암동맛집
- 꼴뚜기회
- 자바스크립트에러처리
- gradle
- 뚝섬역맛집
- 스페인여행
- 서울숲누룽지통닭구이
- 퇴사후공무원
- tomcat7
- 국가직
- 방이편백육분삼십성신여대
- 성신여대편백집
- 영화추천
- 통영에어비앤비
- 한남동맛집
- 통영여행
- react
- 통영예쁜카페
- 성신여대맛집
- 한성대맛집
- 통영
- 파이썬
- JavaScript
- ELK
- Today
- Total
목록전체보기 (146)
코린이의 기록
서브루틴으로서의 함수 함수의 가장 간단한 사용 형태를 강조하기 위해서 서브루틴이라는 용어를 씀. 예제 function printLeapYearStatus() { const year = new Date().getFullYear(); if(year % 4 !== 0) console.log(`${year} IS NOT a leap year`); else if(year % 100 !== 0) console.log(`${year} IS a leap year.`); else if(year % 400 !== 0) console.log(`${year} is NOT a leap year.`); else console.log(`${year} IS a leap year`); } printLeapYearStatus(); Re..
Error 객체 javascript에는 내장된 Error 객체가 있다. 에러 인스턴스 만들기 (Error 인스턴스를 만드는 것만으로 아무일도 일어나지 않음) const err = new Error(); 예외처리 예제 : 이메일 유효성 검사 const email = "abc@gmail.com"; const email2 = "abcgmail.com"; const validatedEmail = validateEmail(email2); if(validatedEmail instanceof Error){ console.error(`Error : ${validatedEmail.message}`); }else { console.log(`Valid email : ${validatedEmail}`); } function ..
가령 js let html = ` Gildong-Hong 1 07/24 2019 `; $("#information_tbl").find("table > tbody").append(html); html Name ID Date 동적으로 ID가 'information_tbl'인 table에 td태그들을 append 한 후에 해당 html의 checkbox에 대한 click 이벤트를 jquery로 생성하려고 한다. var tbl = $('#information_tbl'); $(":checkbox", tbl).click(function () { .... }); 처음에 이런식으로 했는데 아무 이벤트도 발생하지 않았다. 이렇게 동적으로 추가된 태그는 일반적인 이벤트가 동작되지 않는다. 해결방법은? 이벤트 위임(dele..
우선 Bitbucket에서 Create repository를 생성한다 Configure Git for the first time 사용자 정보를 먼저 설정한다. 이름과 이메일 주소를 설정해준다. Commit시 사용되기 때문 git config --global user.name "[user name]" git config --global user.email "[user email]" ex. # git config --globlal user.name "test" # git config -- global user.eimail "test@google.com" Working with your repository I just want to clone this repository If you want to simply..
테이블 행을 클릭하여 이벤트를 발생시킬때, 특정 열 만 제외하고 싶을때 ..... ..... ... ..... ..... 방법? $('device-management').on("click", "tbody tr td:not(.table-action)", function() { ..... }); 위와 같이 td의 class로 설정할 수 있지만 n-1 번째로 지정해줄 수 있다. $('device-management').on("click", "tbody tr td:not(:nth-child(5)))", function() { ..... }); Reference : https://stackoverflow.com/questions/18683226/set-onclick-on-the-tr-except-for-his-s..
"install" terminal command done Received install output: af06cc03-7565-4026-9930-b794c5913b01==37094== Server is listening on port xxxxx Spawning tunnel with: ssh vm2 -N -L localhost:xxxx:localhost:xxxxx Spawned SSH tunnel between local port xxxxand remote port xxxxx Waiting for ssh tunnel to be ready Tunnel(xxxxx) stderr: Permission denied, please try again. Tunnel(xxxxx) stderr: Permission den..
클래스는 함수다. ES6에 생겨난 클래스. Javascript에서 class는 클래스 생성자로 사용할 함수를 만든다는 의미이다. 주의할점은 클래스 문법이 추가되었다는 것이지, 자바스크립트가 클래스 기반으로 바뀌었다는 것은 아니다. function FuncCar() { this.make = "Telsa"; this.model = "Model S"; } const car1 = new FuncCar(); console.log(car1.make); // => Telsa console.log(car1.model); // => Model S class ClassCar() { this.make = "Telsa"; this.model = "Model S"; } const car1 = new ClassCar(); con..
전역 스코프 전역변수를 사용하는 방식 let name = "Irena"; let age = 25; function greet() { console.log(`Hello, ${name}!`); } function getBirthYear() { return new Date().getFullYear() - age; } greet(); console.log(getBirthYear()); Result Hello, Irena! 1994 => name 값을 외부에서 의도적으로 바꿀 수 있다는 문제가 있음. let user = { name : "Irena", age : 25 }; function greet() { console.log(`Hello, ${user.name}!`); } function getBirthYear..