Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript

function world(params){
 	//Code to be executed when the function is called. 
}
world()

//Explaination
//'world' in the function is the name of the function.
//There are brackets after function name. Those are use to push parameters
//The forth line Calls the function named 'world'
Source by tapajyoti-bose.medium.com #
 
PREVIOUS NEXT
Tagged: #javascript
ADD COMMENT
Topic
Name
8+4 =