blob: cb7e692128f7c24ffeedd8dec5191c470e000f59 [file] [log] [blame]
// Copyright 2019 Mike Pennisi. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: For head may omit optional expressions
es5id: 12.6.3_A9.1
---*/
var supreme = 5
var count;
for(count=0;;) {if (count===supreme)break;else count++; }