Is it possible to set default parameter values for functions in JavaScript like with PHP?
function phpFunc($param='defvalue'){
echo $param;
}
phpFunc();
Would result in ‘defvalue’ being outputted…
Is this possible in javascript?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, it’s not possible. You would have to do something like this :
Hope this helps!