Converting number of corresponding string without using library function in JavaScript


Problem

We are required to write a JavaScript function that takes in a number n and converts it to the corresponding string without using the inbuilt functions String() or toString() or using string concatenation.

Example

Following is the code −

 Live Demo

const num = 235456;
const convertToString = (num) => {
   let res = '';
   while(num){
      res = (num % 10) + res;
      num = Math.floor(num / 10);
   };
   return res;
};
console.log(convertToString(num));

Output

Following is the console output −

235456

Updated on: 17-Apr-2021

244 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements