Javascript examples for Data Type:Data Type Cast
OriginalValue | Converted to Number | Converted to String | Converted to Boolean |
---|---|---|---|
"1" | 1 | "1" | true |
<!DOCTYPE html> <html> <body> <p>Converting the string "1" to other types:</p> <p id="demo" style="font-family:courier"></p> <script> var x = "1"; document.getElementById("demo").innerHTML = "Number : " + Number(x) + "<br>" + "String : " + String(x) + "<br>" + "Boolean: " + Boolean(x); </script>/*from w ww . j a v a2s.com*/ </body> </html>