본문 바로가기
Algorithms/코테 문풀

[프로그래머스] 1로 만들기 - JS/ for문과 forEach문의 차이

by hi-rachel 2023. 6. 6.

✏️ 문제 설명

Number.prototype.toString()

: 지정된 숫자 값을 나타내는 문자열을 반환한다.

 

Syntax

toString()
toString(radix)

 

예시)

function hexColour(c) {
  if (c < 256) {
    return Math.abs(c).toString(16);
  }
  return 0;
}

console.log(hexColour(233));
// Expected output: "e9"

console.log(hexColour('11'));
// Expected output: "b"

 

매개변수(Parameters)

: 2 ~ 36 정수, 기본값 10

반환 값(Return value)

: 지정된 숫자 값을 나타내는 문자열

 

 

 

🙂 공부하며 정리하는 글입니다. 잘못된 점이 있다면 피드백 주시면 감사합니다.