hi guys I have an object like this
const tmp ={
identityType:null,
identityNumber:null,
nationality:null,
firstName:null,
secondName:null,
gender:null,
birthDate:null,
bornCountry:null,
profession:null,
province:null,
city:null,
address:null,
postCode:null,
img:null,
};
can I check the tmp if all data is not null I will do something ?, I know the easy way just use if , but the data is too much if I'm using If operator ?