summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-undefined.js
blob: 8c2883d9b4e5fa7b8b7d68e7cb0104a24b150dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 Rick Waldron.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object.prototype.tostring
description: If the this value is undefined, return "[object Undefined]".
---*/
assert.sameValue(
  Object.prototype.toString.call(undefined),
  "[object Undefined]",
  "Object.prototype.toString.call(undefined) returns [object Undefined]"
);

reportCompare(0, 0);