**** BEGIN LOGGING AT Sat Sep 22 02:59:59 2012 Sep 22 03:36:03 what happens in javascript when you return something that doesn't return something? is that, a not very good thing to do? Sep 22 03:36:38 i.e., for an if statement, i can do if (x) {y(); return;}.... or i can do if (x) return y(); Sep 22 03:37:09 does it matter what happens to the return statement? javascript engine wise? Sep 22 09:07:01 fxspec06: if you don't return anything specific your function returns undefined Sep 22 14:33:24 i guess what i'm asking isn't that but more of a deeper javascript question. is it poor practice to do that way Sep 22 14:34:03 it's just a method to execute a function and return exit the current function in one statement Sep 22 15:16:00 perfectly fine to do that Sep 22 15:16:16 functions shortcut out with returns all the time Sep 22 15:16:42 sometiems some logic branch in the function will just return, while another branch will return a value, etc. Sep 22 15:16:51 fantastic. i gotta make sure the JS gods don't smite me Sep 22 15:17:19 off to mail expense reports Sep 22 15:17:20 whee! Sep 22 15:17:33 yippee (i think) **** ENDING LOGGING AT Sun Sep 23 02:59:58 2012