Functions That Return Values Can Be Used in Expressions : Function « Language Basics « JavaScript DHTML






Functions That Return Values Can Be Used in Expressions

   

/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke 

ISBN: 067231763X
Publisher Sams CopyRight 2000

*/


<html>
<head>
  <title>JavaScript Unleashed</title>
  <script type="text/javascript">
  <!--
    function isPhone(aString) {
      var aChar = null;
      var status = true;
      if(aString.length != 13) {
        status = false;
      }else{
        for(var i = 0; i <= 12; i++) {
          aChar = aString.charAt(i);
          if ( i == 0 && aChar == "(" ){
            continue;
          }else{
            if( i == 4 && aChar == ")" ){
              continue;
            }else{
              if( i == 8 && aChar == "-" ){
                continue;
              }else{
                if( parseInt(aChar,10) >= 0 && parseInt(aChar,10) <= 9 ){
                  continue;
                }else {
                  status = false;
                  break;
                }
              }
            }
          }
        }
      }
      return(status);
    }
  // -->
  </script>
</head>
<body>
  <script type="text/javascript">
  <!--
    var userInput = "(800)555-1212";    
    
    if(isPhone(userInput)) {
      document.writeln("Thank you for your phone number.");
      document.writeln("I will have a representative get you");
      document.writeln("more information.");
    }else{
      document.writeln("Please re-enter your phone number");
      document.writeln("using the format (###)###-####");
    }
  //-->
  </script>
   
</body>
</html>

           
         
    
    
  








Related examples in the same category

1.Show Arguments
2.Function That Wraps Document.Write, Adding a Line Break
3.setTimeout() with a pointer to a function
4.Define function in JavaScript
5.Funciton with arguments
6.Pass variables to a function, and use these variable values in the function
7.Function that returns a value
8.A function with arguments, that returns a value
9.A Function Can Be Set Up to Accept a Variable Number of Arguments
10.Accepting Either One or No Arguments
11.Using an Argument with a JavaScript Function
12.Declaring a Function in the 'head' Block
13.Passing by Reference Versus Passing by Value
14.A Function Definition
15.Using the Function Object
16.Passing the Form Object as a Parameter
17.Calling a Function from an Event Handler
18.A Function's arguments and caller Properties
19.Variable Scope Workbench Page
20.Calling a Generalizable Function
21.Simplest function
22.Pass string value in and return string value out
23.A function with only one statement
24.Call your function
25.Nested function call
26.Define a function to accept the string value
27.Call a javascript function with javascript:void()
28.Return an incremented value
29.Check the function parameters
30.Save returned value from a function to a variable
31.Invoking third argument as function
32.Array filter and callback functions
33.Function is Object
34.Call function in body onload event