You can make anythingby writing
C.S.Lewis
JAVASCRIPT TIP
보통은 주소창에 parameter 값이 다음과 같이 표출된다.
https://lahuman.github.io/posts/?lang=ko
이때 해당 주소에서 parameter 값만 제거하고 싶을 경우 다음의 스크립트를 이용하면 간단히 처리할 수 있다.
history.replaceState({}, null, location.pathname);
parameter가 제거된 값은 다음과 같다.
https://lahuman.github.io/posts/
개인 생각