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
☺ | What is this keyword? |
☺ | Name the numeric constants representing max, min values? |
☺ | What does the EnableViewStateMac setting in an aspx page do? |
☺ | What is the difference between an alert box and a confirmation box? |
☺ | How to set the cursor to wait? |
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. |