
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Number to Corresponding String 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