blob: 8ec20c11c84e5ae6a051b5a3c9ac907bc7225c55 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.splice
es5id: 15.4.4.12-9-a-1
description: >
Array.prototype.splice - 'from' is the result of
ToString(actualStart+k) in an Array
---*/
var arrObj = [1, 2, 3];
var newArrObj = arrObj.splice(-2, 1);
assert.sameValue(newArrObj.length, 1, 'newArrObj.length');
assert.sameValue(newArrObj[0], 2, 'newArrObj[0]');