blob: 1cb7f85c6770f69286e5db4b49de5293a17197a7 [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.
/*---
es6id: 23.2.3.7
description: >
Set.prototype.has ( value )
...
6. Return false.
---*/
var s = new Set();
assert.sameValue(s.has(false), false, "`s.has(false)` returns `false`");