How can i call a function into another function....?
Answers
Answered by
8
Explanation:
function function_one()
{
alert("The function called 'function_one' has been called.")
//Here I would like to call function_two.
}
function function_two()
{
alert("The function called 'function_two' has been called.")
}
Similar questions