You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A language is statically typed if the type of a variable is known at compile time. For some languages this means that you as the programmer must specify what type each variable is
advantage here is that all kinds of checking can be done by the compiler, and therefore a lot of trivial bugs are caught at a very early stage int a; - a can take only integer type values at runtime
A language is dynamically typed if the type is associated with run-time values, and not named variables/fields/etc. E.g. JavaScript var a; - a can take any kind of values at runtime
The text was updated successfully, but these errors were encountered: