2012年10月3日 星期三

js define the type of a function's parameter

You cannot define the type of the parameter. The parameter has to check when it is used in a function.
function myFunction(myDate, myString) {
  if(arguments.length > 1 && typeof(Date.parse(myDate)) == "number" && typeof(myString) == "string") {
    //Code here
  }
}

沒有留言: