mirror of https://github.com/tc39/test262.git
17 lines
441 B
JavaScript
17 lines
441 B
JavaScript
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es6id: 20.1.2.14
|
|
esid: sec-number.positive_infinity
|
|
description: >
|
|
The value of Number.POSITIVE_INFINITY is +Infinity
|
|
info: >
|
|
Number.POSITIVE_INFINITY
|
|
|
|
The value of Number.POSITIVE_INFINITY is +∞.
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
assert.sameValue(Number.POSITIVE_INFINITY, Infinity);
|