02-13-2023 12:58 AM
HI i have two arrays : 1.Name and 2. Values
Names = [
“key1”,“key2”,“key3”
]
Values = [
“Value1”,“Value2”,“Value3”
]
I want output from snap as
{“key1” : “value1”,
“key2” :“value2” …
}
Solved! Go to Solution.
02-13-2023 01:34 AM
Hi @ash42,
Do you want the output to be only one object?
If yes, then try with the following expression in a Mapper Snap:
$Names.reduce((acc,curr,ind) => acc.extend({[curr]: $Values[ind]}), {})
The output will look like this:
[
{
"key1": "Value1",
"key2": "Value2",
"key3": "Value3"
}
]
Let me know if this is the desired output.
BR,
Aleksandar.
02-13-2023 01:34 AM
Hi @ash42,
Do you want the output to be only one object?
If yes, then try with the following expression in a Mapper Snap:
$Names.reduce((acc,curr,ind) => acc.extend({[curr]: $Values[ind]}), {})
The output will look like this:
[
{
"key1": "Value1",
"key2": "Value2",
"key3": "Value3"
}
]
Let me know if this is the desired output.
BR,
Aleksandar.
02-13-2023 06:04 AM
Works for me ,Thank You