how to define a function javascript code example
Example 1: javascript function
function myFunc(theObject) {
theObject.make = 'Toyota';
}
var mycar = {make: 'Honda', model: 'Accord', year: 1998};
var x, y;
x = mycar.make;
myFunc(mycar);
y = mycar.make;
Example 2: javascript function
var num1;
var num2;
function newFunction(num1, num2){
return num1 * num2;
}
Example 3: how to make a function in javascript
function test(arg1,arg2,arg3) {
console.log(arg1 + ', ' + arg2 + ', ' + arg3)
}
test('abc','123','xyz');
Example 4: How to create a function in javascript
function addfunc(a, b) {
return a + b;
}
addfunc = (a, b) => { return a + b; }
Example 5: javascript functions
function sayHelloTo(to) {
alert(`Hello ${to}`);
}
sayHelloTo('World from Grepper')