let joke ={
a:"1",
b:"2",
c:false
}
for(let key in joke){
if(joke[key]==""){
alert("")
}
}
as above, in the loop check, c is a Boolean value false, judgment pops up alert, ask how to ignore the case that the key-value pair is a Boolean value, and only detect whether the string and number types are empty?