// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- info: Operator use ToString from separator esid: sec-array.prototype.join description: > Checking separator in ["", "\\", "&", true, Infinity, null, undefind, NaN] ---*/ var x = new Array(0, 1, 2, 3); if (x.join("") !== "0123") { throw new Test262Error('#0: x = new Array(0,1,2,3); x.join("") === "0123". Actual: ' + (x.join(""))); } x = new Array(0, 1, 2, 3); if (x.join("\\") !== "0\\1\\2\\3") { throw new Test262Error('#1: x = new Array(0,1,2,3); x.join("\\") === "0\\1\\2\\3". Actual: ' + (x.join("\\"))); } if (x.join("&") !== "0&1&2&3") { throw new Test262Error('#2: x = new Array(0,1,2,3); x.join("&") === "0&1&2&3". Actual: ' + (x.join("&"))); } if (x.join(true) !== "0true1true2true3") { throw new Test262Error('#3: x = new Array(0,1,2,3); x.join(true) === "0true1true2true3". Actual: ' + (x.join(true))); } if (x.join(Infinity) !== "0Infinity1Infinity2Infinity3") { throw new Test262Error('#4: x = new Array(0,1,2,3); x.join(Infinity) === "0Infinity1Infinity2Infinity3". Actual: ' + (x.join(Infinity))); } if (x.join(null) !== "0null1null2null3") { throw new Test262Error('#3: 5 = new Array(0,1,2,3); x.join(null) === "0null1null2null3". Actual: ' + (x.join(null))); } if (x.join(undefined) !== "0,1,2,3") { throw new Test262Error('#6: x = new Array(0,1,2,3); x.join(undefined) === "0,1,2,3". Actual: ' + (x.join(undefined))); } if (x.join(NaN) !== "0NaN1NaN2NaN3") { throw new Test262Error('#7: x = new Array(0,1,2,3); x.join(NaN) === "0NaN1NaN2NaN3". Actual: ' + (x.join(NaN))); } reportCompare(0, 0);