summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/parseFloat/15.1.2.3-2-1.js
blob: 06fa71941f02f4c65026f544153e9da9f6ff502b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-parsefloat-string
description: >
    pareseFloat - 'trimmedString' is the empty string when inputString
    does not contain any such characters
---*/

assert.sameValue(parseFloat(""), NaN, 'parseFloat("")');

reportCompare(0, 0);