Let in c when we declare a variable we have to specify the type of that variable like:
int a;
but in scripting language (php, javaScript, ruby), we don't specify the type of variable. we just declare the variable like:
$a=12; $b='123'; $name = ['vijay', 'jon', 'david'];
WHY TYPE IS NOT DEFINED BEFORE DECLARING THE VARIABLE IN SCRIPTING LANGUAGE ?