[CodeKata] 문자열 다루기 기본

ryan·2021년 4월 28일
0

CodeKata JS

목록 보기
22/26
post-thumbnail

링크

참고

나의 풀이

function solution(s) {
  const num = Number(s);
  const precision = s.length === 4 ? num.toPrecision(4) : num.toPrecision(6);

  const result =
    (isNaN(precision) !== true && precision.length === 4) ||
    precision.length === 6
      ? true
      : false;
  return result;
}

정규식... 😱

function solution(s) {
  const regex = /^\d{6}$|^\d{4}$/;
  return regex.test(s);
}
profile
👨🏻‍💻☕️ 🎹🎵 🐰🎶 🛫📷

0개의 댓글