Hi
I've found that some people call JavaScript a "dynamically, weakly typed" language, but some even say "untyped"? Which is it really?
|
2
|
Hi I've found that some people call JavaScript a "dynamically, weakly typed" language, but some even say "untyped"? Which is it really?
|
||
|
|
|
|
If a language were "untyped", there would be no concept of types in the language -- that is, no concept of A data type is an abstraction -- it gives meaning to data, a bunch of bits, to represent some kind of tangible thing, such as a For example, manipulating the bits stored in memory by electrical signals is basically performing operations on untyped data -- it basically just deals with switching the electrical states of memory cells on and off. Even at that very low level, even the concept of a "byte" can be thought as a data type, as it represents a group of 8 bits. The Wikipedia article on type system has more information on what it entails. JavaScript is not an untyped language, as it has the concept of strings, numerical values and such that is associated with a value. And there are rules for what kind of operations that can be performed on the different types of values. Therefore, it is a typed language. JavaScript is dynamically typed, as the type of the variable is determined at runtime, not at compile-time. As the type is determined at runtime, it does not require the explicit declaration of types on variables unlike statically typed languages which performs type checks at compile-time. Dynamically typed:
Statically typed:
Furthermore, JavaScript is also weakly typed, meaning that operations can be performed on values of differing types. This may mean that the language will have implicit casts of types to allow certain operations to occur. This is opposed to strongly typed languages which restricts operations which can be performed on values of differing data types. Weakly typed:
Strongly typed:
To get an overall idea of how all these type system concepts come together, here's a little example with an explanation of each part:
|
|||
|
|
|
|
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. |
|||
|
|
|
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. |
||
|
|
|
|
Typing system
|
||||||||
|
|
|
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. |
|||
|
|
|
|
Javascript is not untyped: http://en.wikipedia.org/wiki/Programming_language#Typed_versus_untyped_languages
So for example, in Javascript, it cannot be
(Note: "in" is an operator. This one will have an invalid operand error). Therefore Javascript won't allow any operation to be performed on any data, and therefore is not untyped. Update: thanks for pointing out "hello" / 3 is... NaN... we might say that it is allowed. |
||||||
|
|
|
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 Protoyping instead of classes and inheritance. |
||
|
|