Bleeding edge

2022/11/04 - TIL 본문

ConnecTo

2022/11/04 - TIL

codevil 2022. 11. 4. 20:17

 

{error ? "A" : null}

=> {error && "A"}

if {error ===null || error==undefined} console.log('error') 
=> error&& console.log('error')

error?.(log)
dynamic import

import (".../api/db.json").then( something => console.log(something))

webpack을 쓰면

const db = require('../api/db.json') 과같이 사용할 수 있다.

const navigation:{item :list} = db

툴체인은 로더, 패키지, 미니마이저를 분류로 추가해야할 것을 추가하는 연습을 해야하며, package.json에서 필요한 명령어들을 script에 잘배치시켜 사용시키는 것이 중요하다

'ConnecTo' 카테고리의 다른 글

2022/11/08 - Jest 사용법  (0) 2022.11.08
2022/11/07 - 분할정복  (0) 2022.11.07
2022/11/03 - TIL  (0) 2022.11.03
2022/11/02 - TIL  (0) 2022.11.02
2022/11/01 - TIL  (0) 2022.11.01