how to create a function in js code example
Example 1: functions in javascript
function name( parameter1 ,parameter 2,..)
{
}
Example 2: simple javascript function
function idk() {
alert('This is an alert!')
}
idk()
Example 3: js function
function name(parameter1, parameter2, parameter3) {
}
Example 4: javascript function
var num1;
var num2;
function newFunction(num1, num2){
return num1 * num2;
}
Example 5: functions in javascript
function myFunction(var1, var2) {
return var1 * var2;
}
3
How to create a function in javascriptJavascript By TechWhizKid on Apr 5 2020
function addfunc(a, b) {
return a + b;
}
addfunc = (a, b) => { return a + b; }
Example 6: javascript functions
function sayHelloTo(to) {
alert(`Hello ${to}`);
}
sayHelloTo('World from Grepper')