这是js代码的一部分,我正在尝试检查这种情况如果它有数据但不是正确的类型或值怎么办? 它已经有了这个如果条件你们能告诉我如何在下面提供我的代码来检查它..
setcurrentFruit : function (fruitName, currentFruit) {
WorklistStorage.set(fruitName, currentFruit, false);
},
getcurrentFruit : function (fruitName) {
var currentFruit = unescapeJSON(WorklistStorage.get(fruitName, false));
**if (currentFruit == "undefined" || typeof currentFruit == "undefined") {**
var date = new Date();
currentFruit = date.toString();
wholeQueue.setcurrentFruit(fruitName, currentFruit);
//console.log("poppppp");
}
currentFruit = new Date(currentFruit);
return currentFruit;
},