Heim >Web-Frontend >js-Tutorial >Verwenden Sie auch die erzwungene Konvertierung von Variablentypen in JavaScript

Verwenden Sie auch die erzwungene Konvertierung von Variablentypen in JavaScript

高洛峰
高洛峰Original
2016-11-28 13:10:351001Durchsuche

<script language="javascript">    var str = &#39;100&#39;;
    var num = Number(100);
    alert(typeof(num) + &#39;: &#39; + num);
    var obj = Object(str);
    alert(typeof(obj) + &#39;: &#39; + obj);
    var bool = Boolean(str);
    alert(typeof(bool) + &#39;: &#39; + bool);
 
    var num = 100;
    var str = String(num);
    alert(typeof(str) + &#39;: &#39; + str);
    var bool = Boolean(num);
    alert(typeof(bool) + &#39;: &#39; + bool);
    var obj = Object(num);
    alert(typeof(obj) + &#39;: &#39; + obj);
 
    var bool = true;
    var str = String(bool);
    alert(typeof(str) + &#39;: &#39; + str);
    var num = Number(bool);
    alert(typeof(num) + &#39;: &#39; + num);
    var obj = Object(bool);
    alert(typeof(obj) + &#39;: &#39; + obj);
 
    var obj = {};
    var str = String(obj);
    alert(typeof(str) + &#39;: &#39; + str);
    var num = Number(obj);
    alert(typeof(num) + &#39;: &#39; + num);
    var bool = Boolean(obj);
    alert(typeof(bool) + &#39;: &#39; + bool);
    </script>


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn