Question about Java Script

 From:  Michael Gibson
12075.4 In reply to 12075.3 
Hi Frederick,

re:
> Are classes even a thing in your Java Script?

They are, although the JavaScript engine that MOI uses is old and only supports the ES5 version of the JavaScript language.

In ES6 there is a new "class" keyword but it doesn't do a whole lot.

https://stackoverflow.com/questions/31908058/classes-in-javascript-ecmascript-5#31908169


> If the exist can they be used in "end user scripts"?

Yes, if you keep to the ES5 level.


> JOOC is MoI written entirely in Java Script or is the some C++ code at the heart of it?

There is a lot of C++ code at the core level, JavaScript is used for for controlling program flow, UI, and glue logic.

- Michael