michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * String type has a length property michael@0: * michael@0: * @path ch08/8.4/S8.4_A3.js michael@0: * @description Try read length property of string variable michael@0: */ michael@0: michael@0: var __str = "ABCDEFGH"; michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK#1 michael@0: if (__str.length !== 8) { michael@0: $ERROR('#1: var __str = "ABCDEFGH"; __str.length === 8. Actual: ' + (__str.length)); michael@0: } michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: