blob: c55a7cc8669cc3925dd256be7847c34a850b5c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
Returns a boolean value (not a Boolean object) computed by
ToBoolean(value)
esid: sec-terms-and-definitions-boolean-value
description: >
Used values 1, new String("1"), new Object(1) and called without
argument
---*/
assert.sameValue(typeof Boolean(), "boolean", 'The value of `typeof Boolean()` is expected to be "boolean"');
assert.sameValue(typeof Boolean(1), "boolean", 'The value of `typeof Boolean(1)` is expected to be "boolean"');
assert.sameValue(
typeof Boolean(new String("1")),
"boolean",
'The value of `typeof Boolean(new String("1"))` is expected to be "boolean"'
);
assert.sameValue(
typeof Boolean(new Object(1)),
"boolean",
'The value of `typeof Boolean(new Object(1))` is expected to be "boolean"'
);
reportCompare(0, 0);
|