我從總是字符串的函數中獲取返回值。我用typeof(obj)
,結果總是string
。確定返回值的類型
Date.functionName=Date.prototype.functionName=function(dataObj) {
//The dataObj is always string.
// How can i differentiate between the values...
};
我有三件事情來作爲字符串..
- 日期
- 串...
- 整數值...
這三個都是式string
。
- 我如何區分這三個值。
- 是否正確使用Date.mycustomfunction ......或者我應該使用一些 其他類...
他們爲什麼是字符串?你應該通過實際的數字。 – SLaks
同意。只需傳遞實際值,不要轉換爲字符串,並使用typeof進行區分。 –