How to convert numbers to strings using JavaScript?
Submitted by: AdministratorWe can prepend the number with an empty string in JavaScript
var mystring = ""+myinteger;
//or
var mystring = myinteger.toString();
We can specify a base for the conversion,
var myinteger = 14;
var mystring = myinteger.toString(16);
mystring will be "e".
Submitted by: Administrator
var mystring = ""+myinteger;
//or
var mystring = myinteger.toString();
We can specify a base for the conversion,
var myinteger = 14;
var mystring = myinteger.toString(16);
mystring will be "e".
Submitted by: Administrator
Read Online JavaScript Job Interview Questions And Answers
Top JavaScript Questions
☺ | Does JavaScript have the concept level scope? |
☺ | How do you convert numbers between different bases in JavaScript? |
☺ | How to use "join()" to create a string from an array using JavaScript? |
☺ | What is the difference between a web-garden and a web-farm? |
☺ | To set all checkboxes to true using JavaScript? |
Top Top World Wide Web Categories
☺ | Cascading Style Sheet CSS Interview Questions. |
☺ | HTML5 Interview Questions. |
☺ | Basic Internet Interview Questions. |
☺ | Domain Name System (DNS) Interview Questions. |
☺ | JavaScript Interview Questions. |