Convert To String Jquery Code Example


Example 1: javascript convert number to string


var myNumber=120;
var myString = myNumber.toString(); //converts number to string "120"

Example 2: jquery cast to string


value.toString()
String(value)
value + ""

Example 3: tostring js


var num = 15;
var n = num.toString(); /* now */ "15"

Example 4: convert jquery to string


var $elem = $('<a href="#">Some element</a>');
console.log("HTML is: " + $elem.get(0).outerHTML);

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools