Hello;
How do I exit a function part way through it? return Value? is there another way if I don't want to set a value and just want
an early exit?
does a function ever execute any code after the return value statement?
thanks for your time.
Develop games in your browser. Powerful, performant & highly capable.
A function always runs to the end. You have to design your logic to deal with that.
Thanks blackhornet