S9.2_A5_T1.js (475B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: | 6 Result of boolean conversion from nonempty string value (length is not 7 zero) is true; from empty String (length is zero) is false 8 esid: sec-toboolean 9 description: "\"\" is converted to Boolean by explicit transformation" 10 ---*/ 11 assert.sameValue(Boolean(""), false, 'Boolean("") must return false'); 12 13 reportCompare(0, 0);