Message from JavaScript discussions
May 2017
— Thanx man
Ku coba coba melempar mangis.
Mangis ku lempar mangga ku dapat.
Ku coba coba melamar gadis.
Gadis ku lamar janda ku dapat.
— I found this PDF very useful if anyone else wants to brush up on command patterns & combinations of them
— Http://www.cs.wustl.edu/~levine/courses/cs342/patterns/compounding-command_4.pdf
— #TODO read this
— I learn a lot from stuff like that where it is a different language, but the concepts still apply
— Makes sense to learn basic syntax of Java/C-like langs if just to understand the examples
— a ? b : c && d()
is this (^) interpreted like this?a ? b : (c && d())
or like this?(a ? b : c) && d()
also; in which cases isn't d() in tail-call position?
— This is actually the d-function calling itself recursively, that expression is returned
— I think I might have it...
— It uses the ... operator to put arguments into d
— Doesn't JS reuse stack frames if the argument count isn't the same?