일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- jimp
- signIn
- axios
- react DOM
- dynamodb
- 프로그래머스
- icrawler
- react-sortable-hoc
- xlsx
- react-admin
- gitignore
- cognito
- Route53
- domtoimage
- AWS
- TypeScript
- react-hook-form
- timeinput
- yml
- node
- react
- 가상 DOM
- electron-builder
- readableStream
- electron
- API Gateway
- zerocho
- react-xml-parser
- window.postMessage
Archives
- Today
- Total
꾸준히 공부하는 개발자
[JS] 반복적인 문자 치환 (fromCharCode) 본문
Sheet1.A1 = Sheet1.A3
Sheet1.B1 = Sheet1.B3
Sheet1.C1 = Sheet1.C3
Sheet1.D1 = Sheet1.D3
Sheet1.E1 = Sheet1.E3
Sheet1.F1 = Sheet1.F3
Sheet1.G1 = Sheet1.G3
Sheet1.H1 = Sheet1.H3
Sheet1.I1 = Sheet1.I3
Sheet1.J1 = Sheet1.J3
Sheet1.K1 = Sheet1.K3
Sheet1.L1 = Sheet1.L3
Sheet1.M1 = Sheet1.M3
Sheet1.N1 = Sheet1.N3
Sheet1.O1 = Sheet1.O3
Sheet1.P1 = Sheet1.P3
Sheet1.Q1 = Sheet1.Q3
엑셀data에서 이런 반복적인 작업을 하게 되었다,
하지만 사수의 도움으로 fromcharcode 라는 좋은 함수를 알게 되었다.
for(let i=65; i<65+26; i++){
Sheet1[String.fromCharCode(i) + '1'] = Sheet1[String.fromCharCode(i)+'3']
Sheet1['A' + String.fromCharCode(i) + '1'] = Sheet1['A' + String.fromCharCode(i)+'3']
}
'Javascript' 카테고리의 다른 글
함수 객체 메소드 apply, call, bind (0) | 2020.09.25 |
---|---|
SPA, CSR, SSR, SEO 정리 (0) | 2020.09.24 |
[JS] 특정 문자열 세기 (match) (0) | 2020.02.27 |
[JS] Canvas image edit from s3 (1) | 2020.02.18 |
[JS] window.postMessage (1) | 2020.02.07 |
Comments