User can get warning if variable after assignment (for example) has type different with decrared.
For example:
var acolors = new Array("red","white","blue")
acolors = 14;
acolors defined and initialized as array but in next line of code the variable becomes Number all stored in array data automatically will be lost.