write 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; // x gets the value "Honda"

myFunc(mycar);
y = mycar.make; // y gets the value "Toyota"
                // (the make property was changed by the function)

Example 2: how to make a function in javascript

// Code by DiamondGolurk
// Defining the function

function test(arg1,arg2,arg3) {
	// Insert code here.
  	// Example code.
  	console.log(arg1 + ', ' + arg2 + ', ' + arg3)
}

// Running the function

test('abc','123','xyz');

// Output
// abc, 123, xyz

Example 3: how to write a function javascript

// 3 ways you see it
function name(argument){ 
 return argument + 2
  //return something here
}
name(4) // equals 6

let name = function(arg){ return arg + 2}
name(4) //this equals 6, here we are calling our name function

//es6 style 

let name = (arg) => {return arg+ 2}
name(4) //equals 6