I am trying to destructure the a response from the API. response looks something like below.
Only a and b will be used in the program.
response = {
data: {
someData: {
a:1,
b:2
}
}
}
destructured
const {data: { someData: { a,b } } } = response
Now if data doesn't exist in the response, there are chances that app might break. I want set default value to data and someData. Is there a way to set the default value?
Tried : but throwing lint error as unexpected token
const {data= {}: { someData = {}: { a,b } } } = response