Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456 Effective JavaScript Ch.1 | PDF
オブジェクトラッパー
• オブジェクトラッパーは、等値演算子
(===)で比較されたときプリミティブ
値と同じ振る舞いをしない。
var s = new String('hello');
typeof s; // 'object' not 'string'
s === 'hello'; // false
s == 'hello'; // true
var s2 = new String('hello');
s === s2; // false
s == s2; // false