12-07-2023 07:48 AM
I need to convert an array to an object. this is my array:
12-07-2023 10:06 AM
@KevinFord - you could either just get the first index of the array
$arrayField[0])
or use the Array.pop() method
$arrayField.pop()
Hope this helps!