On Monday, November 25, 2019 at 4:43:14 PM UTC+1, Chuck R. wrote: ... > Does the version of Javascript used by TW5 have any limits? Has it been > updated to support 64-bit operating systems and 64-bit data types? >
Yes! ------------------- JavaScript is an "untyped" language, which is an advantage and a disadvantage. ... Based on your question, it is an advantage, because it doesn't matter if you have a 32bit system or a 64 bit system. max_int is the same! We use what the browser gives us and the browser takes care about the code compatibility. In JS the most important type is an Object <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object>. Almost everything is an object. That's why browsers are highly optimized to work with objects. Internally the tiddler store is object based, which gives us maximum speed and flexibility. -mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/f440bf3b-60cb-44c1-ad11-40a4ff3d77c8%40googlegroups.com.

