JavaScript: Difference between revisions
From Kaboom Wiki
m Fix casing of Typescript |
Koshchki123 (talk | contribs) No edit summary |
||
| Line 2: | Line 2: | ||
It is used extensively both in web-browsers and on your desktop through runtime environments like [[Node.js]], Bun and Deno. | It is used extensively both in web-browsers and on your desktop through runtime environments like [[Node.js]], Bun and Deno. | ||
JavaScript and the derivative language TypeScript are popular choices for Kaboom bot development due to being easier to use than some other languages, and having various libraries such as [[Mineflayer]] available specifically made for Minecraft bots. | |||
==TypeScript== | ==TypeScript== | ||
TypeScript is a descendant of JavaScript that adds typing and type parameters. It is commonly used in JavaScript libraries to provide typing information to dependent projects. | TypeScript is a descendant of JavaScript that adds typing and type parameters. It is commonly used in JavaScript libraries to provide typing information to dependent projects. | ||
Revision as of 23:59, 2 August 2026
JavaScript is a programming language originally designed for use in the Netscape browser, made popular due to its easy to comprehend syntax and lack of strict typing.
It is used extensively both in web-browsers and on your desktop through runtime environments like Node.js, Bun and Deno.
JavaScript and the derivative language TypeScript are popular choices for Kaboom bot development due to being easier to use than some other languages, and having various libraries such as Mineflayer available specifically made for Minecraft bots.
TypeScript
TypeScript is a descendant of JavaScript that adds typing and type parameters. It is commonly used in JavaScript libraries to provide typing information to dependent projects.