url query paramter, path parameter 파싱하는 법

YEONGHUN KO·2023년 5월 24일
0

JAVASCRIPT - BASICS

목록 보기
22/27
 const url = new URL(
   'http://example.com/path/index.html?message=hello&who=world'
 );
  
  console.log(url.searchParams.get('message')); // => 'hello'
  console.log(url.searchParams.get('missing')); // => null

  console.log(url.pathname); // => '/path/index.htm

출처: https://dmitripavlutin.com/parse-url-javascript/

profile
'과연 이게 최선일까?' 끊임없이 생각하기

0개의 댓글