How to overwrite the value of banana to null
Input
{
"fruits": [
"apple",
"banana",
"cherry"
]
}
Desired Output:
{
"fruits": ["apple", null, "cherry"]
}
How to overwrite the value of banana to null
Input
{
"fruits": [
"apple",
"banana",
"cherry"
]
}
Desired Output:
{
"fruits": ["apple", null, "cherry"]
}