All Questions
1 question
11
votes
3
answers
2k
views
How is type checked in a dynamic language interpreter/compiler, such as JavaScript?
In dynamic languages, such as JavaScript or Python, the type of a variable is determined at runtime. This is one reason why they are slower than typed languages such as Java.
How is type checking ...