summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Boolean/S9.2_A5_T3.js
blob: 3122ff8eeda510195b8e86c1f43dbb8ac638342a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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: Any nonempty string convert to Boolean by explicit transformation
---*/
assert.sameValue(Boolean(" "), true, 'Boolean(" ") must return true');
assert.sameValue(Boolean("Nonempty String"), true, 'Boolean("Nonempty String") must return true');

reportCompare(0, 0);