알고리즘 108 - Extract the domain name from a URL

박진현·2021년 8월 4일
0

알고리즘 (Javascript / C)

목록 보기
108/125

Q.

Description:
Write a function that when given a URL as a string, parses out just the domain name and returns it as a string. For example:

domainName("http://github.com/carbonfive/raygun") == "github"
domainName("http://www.zombie-bites.com") == "zombie-bites"
domainName("https://www.cnet.com") == "cnet"

A)

function domainName(url){
  url = url.replace("http://","").replace("https://","").replace("www.","");
  return url.slice(0,url.indexOf("."))    
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글