how many ways are there to call a function in a


How many ways are there to call a function in a program? Explain with example?

Two Ways of Calling Functions: Functions do not run automatically. While the page loads, every function waits quietly until it is told to run.
1. A function calls appearing as a totally completed statement:
function popUp( message ) {
window.alert( message ) ;
}
popUp( "Warning!" ) ;
2. A function calls appearing as part of a statement. Definitions of like functions involve a ‘return' statement:
function add( a, b ) {
c = a + b ;
return c ;
}
sum = add( 2, 4 ) ;
document.write( sum ) ;

 

 

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: how many ways are there to call a function in a
Reference No:- TGS0283514

Expected delivery within 24 Hours