How to Create a new function in JavaScript?

 How to Create a new function in JavaScript?

function heraTech() {

    alert("hellooo");

}

heraTech();  // Now we called the heraTech() function


Comments