symbol-logical-and-evaluation.js (412B)
1 // Copyright (C) 2013 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 12.12.3 5 description: > 6 "Logical AND" Symbol evaluation 7 features: [Symbol] 8 ---*/ 9 var sym = Symbol(); 10 11 assert.sameValue(sym && true, true, "`sym && true` is `true`"); 12 assert.sameValue(!sym && false, false, "`!sym && false` is `false`"); 13 14 reportCompare(0, 0);