michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * NaN is not a keyword michael@0: * michael@0: * @path ch08/8.5/S8.5_A4.js michael@0: * @description Create variable entitled NaN michael@0: */ michael@0: michael@0: var NaN=1.0; michael@0: NaN='asdf'; michael@0: NaN=true; michael@0: NaN=Number.NaN; michael@0: