blob: 9991b85b3c4046dffe70dce2c717368a05cf3809 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-set.prototype.has
description: >
Set.prototype.has ( value )
...
6. Return false.
---*/
var s = new Set();
assert.sameValue(s.has(false), false, "`s.has(false)` returns `false`");