const hash = await bcrypt.hash(요청.body.password, 10);
요청.body.password = hash;
이 부분 이해가 좀 안되서요
<hr />
1. 요청.body.password -> hash 기능으로 사용해서 -> 변수 hash에 담음
근데
2. 요청.body.password = hash 로 또 바꾼다는 것
<hr />
1번과 2번 둘다 hash 기능으로 바꿔주는 것 같은데
왜 또(2번) 바꿔주는 건지 모르겠습니다~