js 復習
typeof [1,2,3,4] // Returns "object" (not "array", see note below)var person = null; // Value is null, but type is still an object== 等しい
=== 値と型が等しいinstanceof オブジェクトがオブジェクト型のインスタンスである場合に true を返しますオブジェクトのプロパティ
名前:値のペア(JavaScript オブジェクトにおける)は、プロパティと呼ばれます。
var person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"};var x = new String(); // Declares x as a String object
var y = new Number(); // Declares y as a Number object
var z = new Boolean(); // Declares z as a Boolean object最終更新