I've found that some people call JavaScript a "dynamically, weakly typed" language, but some even say "untyped"? Which is it really?
|
JavaScript is untyped:
Even Brendan Eich says so. On Twitter, he replied to a thread that linked to this question:
So the problem is that there's a few different definitions of untyped. One definition has been talked about in one of the above answers - the runtime doesn't tag values and just treats each value as bits. JavaScript does tag values and has different behaviour based on those tags. So JavaScript obviously doesn't fit this category. The other definition is from Programming Language Theory (the academic thing that Brendan is referring to). In this domain, untyped just means everything belongs to a single type. Why? Because a language will only generate a program when it can prove that the types align (a.k.a. the Curry-Howard correspondence; types are theorems, programs are proofs). This means in an untyped language:
In contrast to a typed language:
So there you go, in PLT, untyped just means dynamically typed and typed just means statically typed. JavaScript is definitely untyped in this category. See also: |
|||||||||||||||
|
|
JavaScript is weakly typed. It is most certainly not "untyped" but its weakly typed nature allows for a lot of flexibility in terms of implicit conversions. Keep in mind that JavaScript is also dynamically typed. This method of typing allows what is know as "duck typing". For comparison consider that JavaScript is not strongly typed nor is it statically typed. Sometimes understanding what something isn't can help you see better what it is. |
|||||||||||
|
|
Typing system
|
|||||||||||
|
|
To the author's point JavaScript is also classified as Dynamically typed. Wiki states that Dynamically typed languages are type checked at runtime instead of in a compiler while Weakly Typed refers to the ability to change type on the fly within your code. So yes it is both Dynamically typed AND Weakly typed. |
|||
|
|
|
While it is typed (you can ask "typeof someVar" and learn its specific type, it's very weak. Given:
you might say that a is a string. However, if you then write:
b is an int equal to 15, so a acted just like an int. Of course, you can then write:
and c will equal "5Hello World", so a is again acting like a string. |
||||
|
|
Remember that JavaScript allows you to ask what is the It is dynamically and (estimated as) weakly typed. You may want to know it uses Duck typing (see andrew's link) and offers OOP though Prototyping instead of classes and inheritance. |
||||
|
