Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DamienD

  1. DamienD

    Function with the variable number of arguments

    It is often useful to create functions with the variable number of arguments: if the argument is not specified, it automatically gets a default value. Here is how to do it: function MyFun(a, b, c) { a = (typeof(a) == "undefined") ? false : a; b = (typeof(b) == "undefined") ? 50 : b...

Part and Inventory Search

Back
Top