2014-08-31, 02:13 PM
I have two functions:
How to make function 2 execute only if function 1 is true?
function 1()
{
//code blah blah....
}
function 2()
{
//code blah blah....
}
How to make function 2 execute only if function 1 is true?