Is there a way to let a javascript function know that a certain parameter is of a certain type?
Being able to do something like this would be perfect:
function myFunction(Date myDate, String myString)
{
//do stuff
}
Thank you!
Update: Being that the answer is a resounding "no," if I want myDate
to be treated as a date (in order to call date functions on it), I have to cast it as a date inside the function or set a new variable of type Date to it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…