数値以外の値。
function p(stuff) { print("<<<" + stuff + ">>>"); } try { p(Number.NaN.toString()); // prints <<<?>>> n = new Number(Math.sqrt(-2)); p(n); // prints <<<NaN>>> } catch(e) { p("Error = " + e); }