jsデータタイプとtypeof
851 ワード
一、6種類のデータタイプ(一説には7種類)基本データタイプ 参照データタイプ
// 、 、 、 、null、undefined、
//
var num = 2;
var num2 = 2.30;
show(typeof num);
//
var str = 'abc';
var str2 = "123";
show(typeof str);
//
var boo1 = true;
var boo2 = false;
show(typeof boo1);
//
var obj = {
name: ' ',
age: 18
}
show(typeof obj);
// null
var aa = null;
show(typeof aa);
// undefined
var bb;
show(typeof bb);
//
var arr = ['a', 2, null];
show(typeof arr);
function show(data) {
document.write(data);
document.write('<br />');
}
基本データタイプと参照データタイプ