JavaScript Example (Program)
Learn Details

What is Javascript Callback function with Parameters ?


callback एक ऐसा function है जिसे function के अंदर call किया जाता है। जो की उससे पहले बाला function complete run होने के बाद call होता है |

मतलब की , किसी function के parameter में एक function को call किया जाता है जिसके कारण parent function को call होने के बाद उसके parameter (child ) function call होता है।

Note : - Module को use करने के लिए live सर्वर की जरुतत होती है


Syntax :

import{// Name of exported data} from “Source of url export value”
export {// your variable name, function name , object name}



Use with Normal function



<script>     
function student(std_name){
      console.log(`Hello, My name is ${std_name}`)
    }
    function age(){
      console.log("My age is 22 years");
    }
    age();
    student("Ram Kumar");

</script>
 

Use with callback function



<script>     
function student(std_name, std_age){
      console.log(`Hello, My name is ${std_name}`);
      std_age()

    }
    function age(){
      console.log("My age is 22 years");
    } 
    student("Ram Kumar", age);

</script>