Dynamic typing: Difference between revisions
From Coderwiki
More actions
info |
(No difference)
|
Latest revision as of 21:28, 12 August 2025
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.