일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Windows
- 리눅스
- DATABASE
- 노드
- 설정
- 하모니카
- 데이터베이스
- DB
- Atlassian
- 아틀라시안
- install
- 자바스크립트
- python
- javascript
- hamonikr
- ubuntu
- JS
- 3.0
- script
- 우분투
- 설치
- 스크립트
- node
- 자바
- java
- 윈도우
- 파이썬
- Linux
- PostgreSQL
- postgres
Archives
- Today
- Total
목록char (2)
LukeHan 의 잡다한 기술 블로그
javascript 에서 sort 를 이용한 문자열 정렬
var list = new Array(); list.push('a'); list.push('z'); list.push('g'); list.push('b'); console.log(list); > ['a', 'z', 'g', 'b'] list.sort(function(a, b){ if(a > b) return 1; if(a ['a', 'b', 'g', 'z'] 참고 : http://yoonbumtae.com/?p=1237
개발/javascript
2023. 6. 29. 20:00
byte to hex, number to hex, hex to number, character to ascii, uint16 to ascii
// byte to hex function toHexString(byteArray){ return Array.from(byteArray, function(byte){ return ('0' + (byte & 0xFF).toString(16)).slice(-2); }).join('') } // number to hex function dec2hex(num){ hexString = num.toString(16); return hexString; } // hex to number function hex2dec(hexString){ num = parseInt(hexString, 16); return num; } // char to ascii function char2ascii(numStr){ return numS..
개발/javascript
2023. 4. 30. 20:00