blob: 80fe66a2646610d79b9c65c38b1b53940eb474e7 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-arraybuffer.prototype.slice
description: >
The `start` index defaults to 0 if undefined.
info: |
ArrayBuffer.prototype.slice ( start, end )
...
6. Let relativeStart be ToInteger(start).
7. ReturnIfAbrupt(relativeStart).
...
---*/
var arrayBuffer = new ArrayBuffer(8);
var start = undefined,
end = 6;
var result = arrayBuffer.slice(start, end);
assert.sameValue(result.byteLength, 6);