I want to be able to call a function within an if statement.
For example:
var photo = "yes";
if (photo=="yes") {
    capturePhoto();
}
else {
  //do nothing
}; 
This does nothing though. The function is clearly defined above this if statement.
Edit: Wow, downboated to hell! capturePhoto(); was just an example function that didn't really need any more explanation in this scenario?
That should work. Maybe capturePhoto() has a bug?
Insert an alert() or console.log():
var photo = "yes";
if (photo == "yes") {
 alert("Thank you StackOverflow, you're a very big gift for all programmers!");
 capturePhoto();
} else {
  alert("StackOverflow.com must help me!");
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With