Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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 −
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
Advertisements
