I’m new to jQuery and im just trying to pass a boolean to a function.Ive tried various amendments but still not working ?
I’m expecting the alert to be fired
isTrue(true);
function isTrue(boolean isNot){
if(isNot){
alert('true');
}
}
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.
JavaScript (not Java) has no type indicators, just variable names. Remove
boolean