Dynamic typing
From Coderwiki
More actions
One of the ways we can group together programming languages is with these two groups:
- Statically-typed programming languages
- Dynamically-typed programming languages
Dynamic typing is where we don't give variables specific data types, but instead variables have no set type and can often even change their data type if reassigned a value of a different data type.