NOTE: There is an online version and a downloadable desktop version. This page applies to BOTH. The only area of difference will be clearly noted. MORE q
By DarkMG73 on April 27th, 2025 in
NOTE: There is an online version and a downloadable desktop version. This page is for the downloadable version. For information on the online version, as well as more general detail on this tool,, click here. Download Mac Edition NOTE: Apple requires developers to pay an annual fee to be "Certified", which does not actually mean… MORE q
By DarkMG73 on December 16th, 2024 inObjects are the center of JS programming. Methods and Properties can be attached. Objects are lists or collections of properties For each property, Objects always have a name that is a STRING and a value that can be a STRING, NUMBER or FUNCTION Under the hood: When creating an object or adding a property, the JS engine invokes the [put] method to assign a place in memory. When changing a property, the JS engines invokes the [set] method for changing the MORE q
By DarkMG73 on March 31st, 2020 inThe JavaScript runtime environment consists of the JavaScript engine, Web APIs, Job Queue, Callback Queue, and Event Loop. The engine includes the Memory Heap and Call Stack, which processes code synchronously. Asynchronous operations are managed by the Event Loop, which handles tasks from Job and Callback Queues, ensuring efficient execution. MORE q
By DarkMG73 on March 30th, 2020 in