mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
34 lines
1010 B
JavaScript
34 lines
1010 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The result of calling this function is the same as if
|
|
* the built-in join method were invoked for this object with no argument
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.2/S15.4.4.2_A1_T1.js
|
|
* @description If Result(2) is zero, return the empty string
|
|
*/
|
|
|
|
//CHECK#1
|
|
var x = new Array();
|
|
if (x.toString() !== x.join()) {
|
|
$ERROR('#1.1: x = new Array(); x.toString() === x.join(). Actual: ' + (x.toString()));
|
|
} else {
|
|
if (x.toString() !== "") {
|
|
$ERROR('#1.2: x = new Array(); x.toString() === "". Actual: ' + (x.toString()));
|
|
}
|
|
}
|
|
|
|
//CHECK#2
|
|
x = [];
|
|
x[0] = 1;
|
|
x.length = 0;
|
|
if (x.toString() !== x.join()) {
|
|
$ERROR('#2.1: x = []; x[0] = 1; x.length = 0; x.toString() === x.join(). Actual: ' + (x.toString()));
|
|
} else {
|
|
if (x.toString() !== "") {
|
|
$ERROR('#2.2: x = []; x[0] = 1; x.length = 0; x.toString() === "". Actual: ' + (x.toString()));
|
|
}
|
|
}
|
|
|