head-init-expr-check-empty-inc-empty-syntax.js (319B)
1 // Copyright 2019 Mike Pennisi. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 description: For head may omit optional expressions 6 es5id: 12.6.3_A9.1 7 ---*/ 8 9 10 var supreme = 5 11 var count; 12 13 for(count=0;;) {if (count===supreme)break;else count++; } 14 15 reportCompare(0, 0);