Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

// Write a function that takes two numbers (a and b) as argument // Sum a and b // Return the result

// Write a function that takes two numbers (a and b) as argument
// Sum a and b
// Return the result
function
myFunction(a, b) {
return a + b;
}
 
PREVIOUS NEXT
Tagged: #Write #function #takes #numbers #argument #Sum #Return #result
ADD COMMENT
Topic
Name
7+3 =