| // Copyright 2015 Microsoft Corporation. All rights reserved.
|
| // This code is governed by the license found in the LICENSE file.
|
| description: Elements added after the call to from
|
| var array = [ 2, 4, 8, 16, 32, 64, 128 ];
|
| function mapFn(value, index) {
|
| assert.sameValue(value, obj[arrayIndex], "Value mismatch in mapFn at index " + index + ".");
|
| assert.sameValue(index, arrayIndex, "Index mismatch in mapFn.");
|
| obj[originalLength + arrayIndex] = 2 * arrayIndex + 1;
|
| var a = Array.from(obj, mapFn);
|
| assert.sameValue(a.length, array.length, "Length mismatch.");
|
| for (var j = 0; j < a.length; j++) {
|
| assert.sameValue(a[j], array[j], "Element mismatch for array at index " + j + ".");
|