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