Using an Argument with a JavaScript Function : Function : Language Basics : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Java
Java Tutorial
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Language Basics » Function 
Using an Argument with a JavaScript Function


<html>
<head>
  <title>JavaScript Unleashed</title>
</head>
<body>
  <script type="text/javascript">
  <!-- 
    function getBinary(anInteger) {
      var result = "";
      var shortResult = "";
      for(var i=1; i <= 32; i++) {
        if(anInteger & == 1) {
            result = "1" + result;
            shortResult = result;
        else {          
            result =  "0" + result;
        }
        anInteger = anInteger >> 1;
      }
      return(shortResult);
    }

    var binaryString = "";
   
    x = 127;
    binaryString = getBinary(x);
   
    document.write("The number " + x + " in binary form is : \n");
    document.writeln(binaryString);
    
    x = 255;
    binaryString = getBinary(x);
   
    document.write("The number " + x + " in binary form is : \n");
    document.writeln(binaryString);
    document.writeln("The variable x is still equal to : " + x);
  // -->
  </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. Functions That Return Values Can Be Used in Expressions
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
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.