{"ScriptPreparationCode":null,"TestCases":[{"Name":"Spread","Code":"const a = {\r\n email: \u0022abc@mail.com\u0022,\r\n phone: \u002212345678\u0022,\r\n};\r\n\r\nconst b = {\r\n app_version: \u0022AP.12\u0022,\r\n appsflyer_id: \u0022askldjajkshdlkjh2323h4234j2l3j4h\u0022,\r\n advertising_id: \u002223;o4h2l34hl2kj3h4kj23h4\u0022,\r\n device_os_version: \u002212\u0022,\r\n device_name: \u0022Aifon 15 PRO\u0022,\r\n firebase_instance_id: \u00222liu3hiuo23y4u23y4ui2y34iy3u4y234\u0022,\r\n};\r\n\r\nconst res = {\r\n email: null,\r\n phone: null,\r\n last_name: null,\r\n first_name: null,\r\n app_version: null,\r\n appsflyer_id: null,\r\n advertising_id: null,\r\n device_os_version: null,\r\n device_name: null,\r\n firebase_instance_id: null,\r\n ...a,\r\n ...b\r\n};","IsDeferred":false},{"Name":"Object.assign","Code":"const a = {\r\n email: \u0022abc@mail.com\u0022,\r\n phone: \u002212345678\u0022,\r\n};\r\n\r\nconst b = {\r\n app_version: \u0022AP.12\u0022,\r\n appsflyer_id: \u0022askldjajkshdlkjh2323h4234j2l3j4h\u0022,\r\n advertising_id: \u002223;o4h2l34hl2kj3h4kj23h4\u0022,\r\n device_os_version: \u002212\u0022,\r\n device_name: \u0022Aifon 15 PRO\u0022,\r\n firebase_instance_id: \u00222liu3hiuo23y4u23y4ui2y34iy3u4y234\u0022,\r\n};\r\n\r\nconst res = Object.assign({\r\n email: null,\r\n phone: null,\r\n last_name: null,\r\n first_name: null,\r\n app_version: null,\r\n appsflyer_id: null,\r\n advertising_id: null,\r\n device_os_version: null,\r\n device_name: null,\r\n firebase_instance_id: null\r\n }, \r\n a, \r\n b);","IsDeferred":false},{"Name":"Foreach","Code":"const a = {\r\n email: \u0022abc@mail.com\u0022,\r\n phone: \u002212345678\u0022,\r\n last_name: \u0022Last Name\u0022,\r\n first_name: \u0022First Name\u0022,\r\n app_version: null,\r\n appsflyer_id: null,\r\n advertising_id: null,\r\n device_os_version: null,\r\n device_name: null,\r\n firebase_instance_id: null\r\n};\r\n\r\nconst b = {\r\n app_version: \u0022AP.12\u0022,\r\n appsflyer_id: \u0022askldjajkshdlkjh2323h4234j2l3j4h\u0022,\r\n advertising_id: \u002223;o4h2l34hl2kj3h4kj23h4\u0022,\r\n device_os_version: \u002212\u0022,\r\n device_name: \u0022Aifon 15 PRO\u0022,\r\n firebase_instance_id: \u00222liu3hiuo23y4u23y4ui2y34iy3u4y234\u0022,\r\n};\r\n\r\nconst res = {\r\n email: null,\r\n phone: null,\r\n last_name: null,\r\n first_name: null,\r\n app_version: null,\r\n appsflyer_id: null,\r\n advertising_id: null,\r\n device_os_version: null,\r\n device_name: null,\r\n firebase_instance_id: null\r\n};\r\n\r\nObject.keys(a).forEach(key =\u003E {\r\n res[key] = a[key];\r\n });\r\nObject.keys(b).forEach(key =\u003E {\r\n res[key] = b[key];\r\n });","IsDeferred":false}]}