tarthur
-
Posts
16 -
Joined
-
Last visited
-
Days Won
1
Community Answers
-
tarthur's post in Вызов функции из другой функции. was marked as the answer
function f1() {
alert(1);
f2();
alert(3);
}
function f2() {
alert(2)
}
f1();