1 // Copyright 2015 Microsoft Corporation. All rights reserved.
2 // This code is governed by the license found in the LICENSE file.
6 Object properties are assigned to target in ascending index order,
7 i.e. a later assignment to the same property overrides an earlier assignment.
14 var result = Object.assign(target, {
20 assert.sameValue(result.a, "c", "The value should be 'c'.");