eslint autofix설정
"eslint.validate": [ { "language": "vue", "autoFix": true }, { "language": "javascript", "autoFix": true }, { "language": "javascriptreact", "autoFix": true }, { "language": "typescript", "autoFix": true }, { "language": "typescriptreact", "autoFix": true }, ] 설정에서 eslint검색 후 json으로 편집 "eslint.validate": [ "vue", "javascript", "javascriptreact", "typescript", "typescriptreact" ], eslint@5.16.0을 ..
배열 원하는 형태로 재조립하기
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 let arr = [ '1.txt', '1.json', '1.wav', '2.txt', '2.json', '2.wav', '3.txt', '3.wav', '4.txt', '4.json', '4.wav', '5.txt', '5.json', '5.wav', '6.txt', '6.json', '6.wav', '7.txt', '7.json', '7.wav', '8.txt', '8.json', '8.wav', '9.txt', '9.json', '10.txt', '10.json', '10.wa..