Convert a Number to a String!

Lee·2022년 7월 13일

Algorithm

목록 보기
46/92
post-thumbnail

❓ Convert a Number to a String!

Q. We need a function that can transform a number into a string.

What ways of achieving this do you know?

Examples:
123 --> "123"
999 --> "999"

✔ Solution

//#my solution
function numberToString(num) {
  // Return a string of the number here!
  return String(num);
}

//#other solution
function numberToString(num) {
  return num.toString();
}
profile
Lee

0개의 댓글