+ 9
What is Dynamically Typed Language?
4 Réponses
+ 7
Matty Fortunate I have given the example in tags.
+ 6
It probably means loosely typed languages, which means that you don't need to specify the data type of the value when you declare it, the compiler will read the value and choose the suitable data type for certain variables
+ 3
JavaScript and python etc are examples of dynamically typed language
0
Dynamically-typed languages are those (like JavaScript) where the interpreter assigns variables a type at runtime based on the variable's value at the time.