blob: a7d9b85c3af2975bd7e0f94ff2dc4a7c0295fd8e [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The Number prototype object has the property toExponential
es5id: 15.7.4_A3.6
description: The test uses hasOwnProperty() method
---*/
assert.sameValue(
Number.prototype.hasOwnProperty("toExponential"),
true,
'Number.prototype.hasOwnProperty("toExponential") must return true'
);