blob: 7c91fcaa95f3e7d812503112dc3b4264ffebe5a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2019 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
compareArray uses SameValue for value comparison.
includes: [compareArray.js]
---*/
assert(compareArray([NaN], [NaN]));
assert(!compareArray([0], [-0]));
reportCompare(0, 0);
|