Deutsch English Français Italiano |
<vo38le$34a3i$9@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!eternal-september.org!.POSTED!not-for-mail From: Lawrence D'Oliveiro <ldo@nz.invalid> Newsgroups: comp.os.vms Subject: Re: basic BASIC question Date: Thu, 6 Feb 2025 21:13:18 -0000 (UTC) Organization: A noiseless patient Spider Lines: 21 Message-ID: <vo38le$34a3i$9@dont-email.me> References: <vnipj8$3i2i9$1@dont-email.me> <vnj4pb$3kfrs$1@dont-email.me> <679d180f$0$713$14726298@news.sunsite.dk> <679d18c2$0$713$14726298@news.sunsite.dk> <vnj7or$ga7$3@reader2.panix.com> <vnr1lq$1d7as$1@dont-email.me> <67a4cc2d$0$708$14726298@news.sunsite.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Thu, 06 Feb 2025 22:13:18 +0100 (CET) Injection-Info: dont-email.me; posting-host="54aed72ee1aba17184c3f20e52ff3c77"; logging-data="3287154"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19VCzA8KlFrl+77W2Yd81c3" User-Agent: Pan/0.161 (Chasiv Yar; ) Cancel-Lock: sha1:IRtrnYFFmvmypsj3JXPXqDVKZJg= Bytes: 2184 On Thu, 6 Feb 2025 09:50:21 -0500, Arne Vajhøj wrote: > Small code bases, frequent releases and high user tolerance for small > ooopses favor a language like JavaScript. Ada would not work well in > this context from a business perspective. JavaScript is also a dynamic language, unlike Ada. Maybe not as dynamic as Python, but still lets you do a lot in quite compact code. I’m not sure I agree with the “tolerance for small ooopses”. There is a thing called “use strict”, which helps catch common JavaScript errors. It is even enforced in new-style modules. > Code bases are not small anymore though. And TypeScript has taken huge > chunks of market share from JavaScript in recent years. TypeScript is just an attempt to add static typing to JavaScript. Maybe it works for native-side code bases (i.e. not in a browser sandbox). But then you pair it with Electron as your “GUI toolkit”, and you wonder why Microsoft’s Visual Studio Code is such a huge download for such little functionality ...