코드캠프

코드캠프 21일차

Grace 2022. 10. 2. 20:59

Props, data, prev

graphQL은 restAPI의 오버페칭,언더페칭 문제를 해결했다.

정규표현식

/\w+@\w+.\w+/ .test('bbb@bbb.com')

\ escape
w 문자열
w+ 한 개 이상의 문자열

/^\d{3}-\d{3,4}-\d{4}$/.test('010-1234-5678')
^ start
d{} 개수제한
$ end

글로벌스테이트

Context API