| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 젤리핀
- DataTable
- DataGridView
- trayicon
- 시놀로지깃티설치
- theme
- gitea설치
- 깃티gpg
- Resident
- 트레이아이콘
- Gitea 설치
- 시놀로지
- 깃티
- LogonUI
- 깃티설치
- Resident Evil
- checkbox
- unable to boot the simulator
- Column
- Header
- synology
- CmdKey
- gfd
- c#
- jellyfin
- Re
- Gitea GPG
- gitea
- Capcom
- toroisegit
- Today
- Total
목록Programming/JavaScript (2)
C O D I N G
""와 ''는 동일하다"String" === 'String'"String" == 'String' 비어있는 문자열,0 문자열,공백 문자열,숫자 0 위의 4가지는 false를 의미하기도 함 ex)'' == '0' // false0 == '' // true0 == '0' // truefalse == 'false' // falsefalse == '0' // truefalse == undefined // falsefalse == null // falsenull == undefined // true" \t\r\n" == 0 // true 이와 같은것을 Truthy, Falsy라고 한다. 참조사이트https://developer.mozilla.org/en-US/docs/Glossary/Truthyhttps://dev..
window.onload = function() {} - html이 처음 열렸을때 한번 실행 함수 listBox는 text만 바로 넣을 수 없고 형 변환을 해야함 ex) var option = new Option();option.text = sInput;list.options.add(option); listbox item초기화방법- list.options.length = 0 string문자열 자르는방법- string.substr(index, length); 배열에서 특정된번호부터 삭제하는 방법 - Array.splice(index, count); label에 값 전달방법- var label = document.getElementById('Label_ID');label.innerHTML = String;