I have one function by 2 optional property and how send value hight?
JavaScript
x
function test($size=1,$hight=2){
// code .........
}
JavaScript
test($hight)
test(null,$hight);
Is there any other way? I dont need test(null,$hight);
Advertisement
Answer
You can use like it, May be it will help to you.
JavaScript
function test($hight=null,$size=null){
// code .........
}
$hight = 2;
$size = 1;
test($hight)
test($hight,''); // if you pass as '' - blank even it's work and if second parameter is not given even it will work.