Solemn
New Member
Just been looking through some code and i am trying to work out the order this would run in.
if (m_discard==true) f_discard_row("no")
_CreatePage(m_currentAlias);
m_discard=false;
the if statement has no {} so not sure what is part of the if statement and would is outside of it.
Also the function f_discard_row has no closing ; so I'm not even sure why this is working...
I'm reading this as a C developer so not that clued up on how lenient JS is
Thanks for any advice !
if (m_discard==true) f_discard_row("no")
_CreatePage(m_currentAlias);
m_discard=false;
the if statement has no {} so not sure what is part of the if statement and would is outside of it.
Also the function f_discard_row has no closing ; so I'm not even sure why this is working...
I'm reading this as a C developer so not that clued up on how lenient JS is
Thanks for any advice !