michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: var testArray = [1, 2, 3] michael@0: assertEq(testArray['0' + '\0'], undefined); michael@0: assertEq(testArray['1' + '\0' + 'aaaa'], undefined) michael@0: assertEq(testArray['\0' + '2'], undefined); michael@0: assertEq(testArray['\0' + ' 2'], undefined); michael@0: michael@0: testArray['\0'] = 'hello'; michael@0: testArray[' \0'] = 'world'; michael@0: assertEq(testArray['\0'], 'hello'); michael@0: assertEq(testArray[' \0'], 'world'); michael@0: michael@0: if (typeof reportCompare == 'function') michael@0: reportCompare(true, true);