I want to check the following array have any empty value or not
Example
The following should return true
[
{
"price": "12",
"number": "1"
},
{
"price": "12",
"number": "1"
}
]
The following should return false
[
{
"price": "12",
"number": "1"
},
{
"price": "12",
"number": ""
}
]