Maison > interface Web > js tutoriel > 在JavaScript中也玩变量类型强行转换

在JavaScript中也玩变量类型强行转换

高洛峰
Libérer: 2016-11-28 13:10:35
original
990 Les gens l'ont consulté

<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>
Copier après la connexion


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal