Parameters
File Location
javascript-library
└── 0-PreWork
└── 1-Fundamentals
└── 4-Functions
05-parameters.js <----You will be working in this file.Sample Code
function petNameAndBreed(name, type){
var petDetails = name + ", " + type;
console.log(petDetails);
return petDetails;
}Arguments
Key Points
Last updated