Convert '0'(char value) to number, string and Boolean - Javascript Data Type

Javascript examples for Data Type:Data Type Cast

Introduction

OriginalValueConverted to Number Converted to String Converted to Boolean
"0" 0 "0"true

Demo Code

ResultView the demo in separate window


<!DOCTYPE html>
<html>
<body>

<p>Converting the string "0" to other types:</p>

<p id="demo" style="font-family:courier"></p>

<script>
var x = "0";
document.getElementById("demo").innerHTML =
"Number : " + Number(x) + "<br>" +
"String : " + String(x) + "<br>" +
"Boolean: " + Boolean(x);
</script>/*from  w ww. j  av  a 2s .c  om*/

</body>
</html>

Related Tutorials