Write a JS Program to Pass Function with Argument code example
Example: parameters in javascript
function myFunction(x, y) {
if (y === undefined) {
y = 2;
}
}
function myFunction(x, y) {
if (y === undefined) {
y = 2;
}
}