JS的变量类型与转换方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS的变量类型与转换方法相关的知识,希望对你有一定的参考价值。
一、数据类型判断
例子:
var a = 100; //定义了一个变量a,并且赋值100
var b = true;
var c = "hello";
var d = ‘k‘;
console.log(typeof a); //输出a变量的类型
console.log(typeof a);
console.log(typeof a);
console.log(typeof a);
以上是关于JS的变量类型与转换方法的主要内容,如果未能解决你的问题,请参考以下文章