Computer Science, asked by rp869546, 9 months ago

How can i call a function into another function....?

Answers

Answered by ankitgupta82
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