summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Boolean/S9.2_A5_T1.js
blob: 78111566c99aa5e72f8c7d9fc0edb260b8267bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    Result of boolean conversion from nonempty string value (length is not
    zero) is true; from empty String (length is zero) is false
esid: sec-toboolean
description: "\"\" is converted to Boolean by explicit transformation"
---*/
assert.sameValue(Boolean(""), false, 'Boolean("") must return false');

reportCompare(0, 0);