About 296,000 results
Open links in new tab
  1. javascript - Is there any way to make JS strongly typed ... - Stack ...

    Mar 7, 2021 · JavaScript is a weakly dynamically typed language. I don't mind the dynamic typing, but the weak typing means lots of frustration at unexpected type coercion when I least expect it.

  2. JavaScript’s Lack of Strong Typing: A Blessing or a Curse?

    Mar 14, 2025 · JavaScript is known as the versatile programming language. JavaScript is infamous for its loose typing nature. For some developers this feels like freedom. For others, it is the source of a...

  3. Understanding Strongly Typed JavaScript with TypeScript

    Oct 31, 2024 · JavaScript is a powerful and versatile programming language that is widely used for web development. However, one of the common challenges developers face when working with …

  4. What is TypeScript? Strongly typed JavaScript - InfoWorld

    Dec 6, 2024 · In particular, TypeScript is strongly typed —meaning that the programmer can declare variables and other data structures to be of a specific type, like a string or a boolean, and TypeScript...

  5. Strongly Typed vs Weakly Typed Languages: A Complete Guide

    Sep 2, 2024 · The terms "strongly typed" and "weakly typed" refer to a key spectrum in programming language design that affects type safety. This comprehensive guide will analyze the tradeoffs …

  6. What is the difference between strongly typed and weakly typed languages?

    Mar 10, 2025 · Examples include JavaScript, Perl, and PHP. The choice between strongly and weakly typed languages depends on the need for strict type safety or programming flexibility. Strongly typed …

  7. What is the difference between weakly typed and strongly typed ...

    Aug 7, 2023 · In the realm of web development, JavaScript is a language that is often discussed in terms of its typing system. Understanding the difference between weakly typed and strongly typed …

  8. TypeScript: JavaScript With Syntax For Types.

    TypeScript is JavaScript with syntax for types. TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.

  9. Loosely typed vs strongly typed languages - Flavio Copes

    JavaScript is loosely typed. You don’t have to tell that a string is a string, nor you can require a function to accepts an integer as its parameter. This gives JavaScript a lot of flexibility. Flexibility lets you …

  10. Using strongly typed vs. statically typed code - LogRocket Blog

    Dec 20, 2023 · For example, you could say that Java is more strongly typed than C or that C is more strongly typed than JavaScript. Let’s look at what these concepts are about in further detail.