본문 바로가기

공부/입문자를 위한 Javascript 알고리즘 이론+실습

[section-02] operator (숫자+문자열 - 이런 건 맨날 나만 시키지)

[인프런x코드캠프] 입문자를 위한 Javascript 알고리즘 이론+실습 강의를 들으며 풀어본 문제들

(출처는 아래 링크)

 

[인프런x코드캠프] 입문자를 위한 Javascript 알고리즘 이론+실습

 

function solution(name, birth) {
  return name + birth;
}

solution("marco", 971204); //marco971204
solution("tomas", 991108); //tomas991108