test262/test/built-ins/Math/sin/zero.js

11 lines
284 B
JavaScript
Raw Normal View History

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2014-07-25 00:41:42 +02:00
es5id: 15.8.2.16_A3
2016-06-23 01:31:42 +02:00
description: Return arg if -0 or +0
---*/
2016-06-23 01:31:42 +02:00
assert.sameValue(Math.sin(0), 0, "+0");
assert.sameValue(Math.sin(-0), -0, "-0");