symbol-logical-or-evaluation.js (407B)
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 OR" 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, sym, "`sym || false` is `sym`"); 13 14 reportCompare(0, 0);