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