What's loosely typed language?
A loosely typed language is a programming language that does not require a variable to be defined. it automatically associates a data type to the variable, depending on its value.
Example: PHP language
$name = 'moemen';
// The value of name (moemen)...
moemensaadeh.hashnode.dev1 min read