Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript function

var x = myFunction(10, 10);     // Function is called, return value will end up in x

function myFunction(a, b) {
    return a * b;             // Function returns the product of a and b
}
Source by blog.niftysnippets.org #
 
PREVIOUS NEXT
Tagged: #javascript #function
ADD COMMENT
Topic
Name
7+2 =